We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20505eb commit de960bfCopy full SHA for de960bf
core/5.0/math.d.ts
@@ -95,6 +95,12 @@ declare namespace math {
95
*/
96
function min(x: number, ...numbers: number[]): number;
97
98
+ /**
99
+ * Returns the remainder of the division of x by y that rounds the quotient
100
+ * towards zero. (integer/float)
101
+ */
102
+ function mod(x: number, y: number): number;
103
+
104
/**
105
* The value of π.
106
0 commit comments