@@ -18,61 +18,61 @@ variants (e.g. mul_i, mul_n) together with a single description.
18
18
## abs
19
19
* ` abs_i(int $i) `
20
20
* ` abs_n(num $n) `
21
- * ` abs_I(Int $i) `
21
+ * ` abs_I(Any $i) `
22
22
23
23
Return the absolute value of a number.
24
24
25
25
## add
26
26
* ` add_i(int $l, int $r) `
27
27
* ` add_n(num $l, num $r) `
28
- * ` add_I(Int $l, Int $r) `
28
+ * ` add_I(Any $l, Any $r) `
29
29
30
30
Add two numbers together, returning the result.
31
31
32
32
## div
33
33
* ` div_i(int $l, int $r) `
34
34
* ` div_n(num $l, num $r) `
35
- * ` div_I(Int $l, Int $r) `
35
+ * ` div_I(Any $l, Any $r) `
36
36
37
37
Divide $l by $r, returning the result.
38
38
39
39
## gcd
40
40
* ` gcd_i(int $l, int $r) `
41
- * ` gcd_I(Int $l, Int $r) `
41
+ * ` gcd_I(Any $l, Any $r) `
42
42
43
43
Return the greatest common multiple of two numbers.
44
44
45
45
## lcm
46
46
* ` lcm_i(int $l, int $r) `
47
- * ` lcm_I(Int $l, Int $r) `
47
+ * ` lcm_I(Any $l, Any $r) `
48
48
49
49
Return the lowest common multiple of two numbers.
50
50
51
51
## mod
52
52
* ` mod_i(int $l, int $r) `
53
53
* ` mod_n(num $l, num $r) `
54
- * ` mod_I(Int $l, Int $r) `
54
+ * ` mod_I(Any $l, Any $r) `
55
55
56
56
Return the modulus of $l by $r.
57
57
58
58
## mul
59
59
* ` mul_i(int $l, int $r) `
60
60
* ` mul_n(num $l, num $r) `
61
- * ` mul_I(Int $l, Int $r) `
61
+ * ` mul_I(Any $l, Any $r) `
62
62
63
63
Multiple two numbers, returning the result.
64
64
65
65
## neg
66
66
* ` neg_i(int $i) `
67
67
* ` neg_n(num $n) `
68
- * ` neg_I(Int $i) `
68
+ * ` neg_I(Any $i) `
69
69
70
70
Return the negative of a number.
71
71
72
72
## sub
73
73
* ` sub_i(int $l, int $r) `
74
74
* ` sub_n(num $l, num $r) `
75
- * ` sub_I(Int $l, Int $r) `
75
+ * ` sub_I(Any $l, Any $r) `
76
76
77
77
Subtract $r from $l, returning the result.
78
78
0 commit comments