Skip to content

Commit 72c955f

Browse files
committed
Convert from Int -> Any
1 parent 2daeb9a commit 72c955f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/ops.markdown

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,61 +18,61 @@ variants (e.g. mul_i, mul_n) together with a single description.
1818
## abs
1919
* `abs_i(int $i)`
2020
* `abs_n(num $n)`
21-
* `abs_I(Int $i)`
21+
* `abs_I(Any $i)`
2222

2323
Return the absolute value of a number.
2424

2525
## add
2626
* `add_i(int $l, int $r)`
2727
* `add_n(num $l, num $r)`
28-
* `add_I(Int $l, Int $r)`
28+
* `add_I(Any $l, Any $r)`
2929

3030
Add two numbers together, returning the result.
3131

3232
## div
3333
* `div_i(int $l, int $r)`
3434
* `div_n(num $l, num $r)`
35-
* `div_I(Int $l, Int $r)`
35+
* `div_I(Any $l, Any $r)`
3636

3737
Divide $l by $r, returning the result.
3838

3939
## gcd
4040
* `gcd_i(int $l, int $r)`
41-
* `gcd_I(Int $l, Int $r)`
41+
* `gcd_I(Any $l, Any $r)`
4242

4343
Return the greatest common multiple of two numbers.
4444

4545
## lcm
4646
* `lcm_i(int $l, int $r)`
47-
* `lcm_I(Int $l, Int $r)`
47+
* `lcm_I(Any $l, Any $r)`
4848

4949
Return the lowest common multiple of two numbers.
5050

5151
## mod
5252
* `mod_i(int $l, int $r)`
5353
* `mod_n(num $l, num $r)`
54-
* `mod_I(Int $l, Int $r)`
54+
* `mod_I(Any $l, Any $r)`
5555

5656
Return the modulus of $l by $r.
5757

5858
## mul
5959
* `mul_i(int $l, int $r)`
6060
* `mul_n(num $l, num $r)`
61-
* `mul_I(Int $l, Int $r)`
61+
* `mul_I(Any $l, Any $r)`
6262

6363
Multiple two numbers, returning the result.
6464

6565
## neg
6666
* `neg_i(int $i)`
6767
* `neg_n(num $n)`
68-
* `neg_I(Int $i)`
68+
* `neg_I(Any $i)`
6969

7070
Return the negative of a number.
7171

7272
## sub
7373
* `sub_i(int $l, int $r)`
7474
* `sub_n(num $l, num $r)`
75-
* `sub_I(Int $l, Int $r)`
75+
* `sub_I(Any $l, Any $r)`
7676

7777
Subtract $r from $l, returning the result.
7878

0 commit comments

Comments
 (0)