1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
|
% API
# Builtins
# Int
## Int.abs
```tomo
Int.abs : func(x: Int -> Int)
```
Calculates the absolute value of an integer.
Argument | Type | Description | Default
---------|------|-------------|---------
x | `Int` | The integer whose absolute value is to be calculated. | -
**Return:** The absolute value of `x`.
**Example:**
```tomo
assert (-10).abs() == 10
```
## Int.choose
```tomo
Int.choose : func(n: Int, k: Int -> Int)
```
Computes the binomial coefficient of the given numbers (the equivalent of `n` choose `k` in combinatorics). This is equal to `n.factorial()/(k.factorial() * (n-k).factorial())`.
Argument | Type | Description | Default
---------|------|-------------|---------
n | `Int` | The number of things to choose from. | -
k | `Int` | The number of things to be chosen. | -
**Return:** The binomial coefficient, equivalent to the number of ways to uniquely choose `k` objects from among `n` objects, ignoring order.
**Example:**
```tomo
assert 4.choose(2) == 6
```
## Int.clamped
```tomo
Int.clamped : func(x: Int, low: Int, high: Int -> Int)
```
Returns the given number clamped between two values so that it is within that range.
Argument | Type | Description | Default
---------|------|-------------|---------
x | `Int` | The integer to clamp. | -
low | `Int` | The lowest value the result can take. | -
high | `Int` | The highest value the result can take. | -
**Return:** The first argument clamped between the other two arguments.
**Example:**
```tomo
assert 2.clamped(5, 10) == 5
```
## Int.factorial
```tomo
Int.factorial : func(n: Int -> Text)
```
Computes the factorial of an integer.
Argument | Type | Description | Default
---------|------|-------------|---------
n | `Int` | The integer to compute the factorial of. | -
**Return:** The factorial of the given integer.
**Example:**
```tomo
assert 10.factorial() == 3628800
```
## Int.get_bit
```tomo
Int.get_bit : func(i: Int, bit_index: Int -> Bool)
```
In the binary representation of an integer, check whether a given bit index is set to 1 or not.
For fixed-size integers, the bit index must be between 1 and the number of bits in that integer (i.e. 1-64 for `Int64`). For `Int`, the bit index must be between 1 and `Int64.max`. Values outside this range will produce a runtime error.
Argument | Type | Description | Default
---------|------|-------------|---------
i | `Int` | The integer whose bits are being inspected. | -
bit_index | `Int` | The index of the bit to check (1-indexed). | -
**Return:** Whether or not the given bit index is set to 1 in the binary representation of the integer.
**Example:**
```tomo
assert 6.get_bit(1) == no
assert 6.get_bit(2) == yes
assert 6.get_bit(3) == yes
assert 6.get_bit(4) == no
```
## Int.hex
```tomo
Int.hex : func(i: Int, digits: Int = 0, uppercase: Bool = yes, prefix: Bool = yes -> Text)
```
Converts an integer to its hexadecimal representation.
Argument | Type | Description | Default
---------|------|-------------|---------
i | `Int` | The integer to be converted. | -
digits | `Int` | The minimum number of digits in the output string. | `0`
uppercase | `Bool` | Whether to use uppercase letters for hexadecimal digits. | `yes`
prefix | `Bool` | Whether to include a "0x" prefix. | `yes`
**Return:** The hexadecimal string representation of the integer.
**Example:**
```tomo
assert 255.hex(digits=4, uppercase=yes, prefix=yes) == "0x00FF"
```
## Int.is_between
```tomo
Int.is_between : func(x: Int, a: Int, b: Int -> Bool)
```
Determines if an integer is between two numbers (inclusive).
Argument | Type | Description | Default
---------|------|-------------|---------
x | `Int` | The integer to be checked. | -
a | `Int` | One end of the range to check (inclusive). | -
b | `Int` | The other end of the range to check (inclusive). | -
**Return:** `yes` if `a <= x and x <= b` or `a >= x and x >= b`, otherwise `no`
**Example:**
```tomo
assert 7.is_between(1, 10) == yes
assert 7.is_between(10, 1) == yes
assert 7.is_between(100, 200) == no
assert 7.is_between(1, 7) == yes
```
## Int.is_prime
```tomo
Int.is_prime : func(x: Int, reps: Int = 50 -> Bool)
```
Determines if an integer is a prime number.
This function is _probabilistic_. With the default arguments, the chances of getting an incorrect answer are astronomically small (on the order of 10^(-30)). See [the GNU MP docs](https://gmplib.org/manual/Number-Theoretic-Functions#index-mpz_005fprobab_005fprime_005fp) for more details.
Argument | Type | Description | Default
---------|------|-------------|---------
x | `Int` | The integer to be checked. | -
reps | `Int` | The number of repetitions for primality tests. | `50`
**Return:** `yes` if `x` is a prime number, `no` otherwise.
**Example:**
```tomo
assert 7.is_prime() == yes
assert 6.is_prime() == no
```
## Int.next_prime
```tomo
Int.next_prime : func(x: Int -> Int)
```
Finds the next prime number greater than the given integer.
This function is _probabilistic_, but the chances of getting an incorrect answer are astronomically small (on the order of 10^(-30)). See [the GNU MP docs](https://gmplib.org/manual/Number-Theoretic-Functions#index-mpz_005fprobab_005fprime_005fp) for more details.
Argument | Type | Description | Default
---------|------|-------------|---------
x | `Int` | The integer after which to find the next prime. | -
**Return:** The next prime number greater than `x`.
**Example:**
```tomo
assert 11.next_prime() == 13
```
## Int.octal
```tomo
Int.octal : func(i: Int, digits: Int = 0, prefix: Bool = yes -> Text)
```
Converts an integer to its octal representation.
Argument | Type | Description | Default
---------|------|-------------|---------
i | `Int` | The integer to be converted. | -
digits | `Int` | The minimum number of digits in the output string. | `0`
prefix | `Bool` | Whether to include a "0o" prefix. | `yes`
**Return:** The octal string representation of the integer.
**Example:**
```tomo
assert 64.octal(digits=4, prefix=yes) == "0o0100"
```
## Int.onward
```tomo
Int.onward : func(first: Int, step: Int = 1 -> Text)
```
Return an iterator that counts infinitely from the starting integer (with an optional step size).
Argument | Type | Description | Default
---------|------|-------------|---------
first | `Int` | The starting integer. | -
step | `Int` | The increment step size. | `1`
**Return:** An iterator function that counts onward from the starting integer.
**Example:**
```tomo
nums : &[Int] = &[]
for i in 5.onward()
nums.insert(i)
stop if i == 10
assert nums[] == [5, 6, 7, 8, 9, 10]
```
## Int.parse
```tomo
Int.parse : func(text: Text, base: Int? = none, remainder: &Text? = none -> Int?)
```
Converts a text representation of an integer into an integer.
Argument | Type | Description | Default
---------|------|-------------|---------
text | `Text` | The text containing the integer. | -
base | `Int?` | The numeric base to use when parsing the integer. If unspecified, the integer's base will be inferred from the text prefix. After any "+" or "-" sign, if the text begins with "0x", the base will be assumed to be 16, "0o" will assume base 8, "0b" will assume base 2, otherwise the base will be assumed to be 10. | `none`
remainder | `&Text?` | If non-none, this argument will be set to the remainder of the text after the matching part. If none, parsing will only succeed if the entire text matches. | `none`
**Return:** The integer represented by the text. If the given text contains a value outside of the representable range or if the entire text can't be parsed as an integer, `none` will be returned.
**Example:**
```tomo
assert Int.parse("123") == 123
assert Int.parse("0xFF") == 255
assert Int.parse("123xyz") == none
remainder : Text
assert Int.parse("123xyz", &remainder) == 123
assert remainder == "xyz"
# Can't parse:
assert Int.parse("asdf") == none
# Outside valid range:
assert Int8.parse("9999999") == none
# Explicitly specifying base:
assert Int.parse("10", base=16) == 16
```
## Int.prev_prime
```tomo
Int.prev_prime : func(x: Int -> Int?)
```
Finds the previous prime number less than the given integer. If there is no previous prime number (i.e. if a number less than `2` is provided), then the function will create a runtime error.
This function is _probabilistic_, but the chances of getting an incorrect answer are astronomically small (on the order of 10^(-30)). See [the GNU MP docs](https://gmplib.org/manual/Number-Theoretic-Functions#index-mpz_005fprobab_005fprime_005fp) for more details.
Argument | Type | Description | Default
---------|------|-------------|---------
x | `Int` | The integer before which to find the previous prime. | -
**Return:** The previous prime number less than `x`, or `none` if `x` is less than 2.
**Example:**
```tomo
assert 11.prev_prime() == 7
```
## Int.sqrt
```tomo
Int.sqrt : func(x: Int -> Int)
```
Calculates the nearest square root of an integer.
Argument | Type | Description | Default
---------|------|-------------|---------
x | `Int` | The integer whose square root is to be calculated. | -
**Return:** The integer part of the square root of `x`.
**Example:**
```tomo
assert 16.sqrt() == 4
assert 17.sqrt() == 4
```
## Int.to
```tomo
Int.to : func(first: Int, last: Int, step: Int? = none -> func(->Int?))
```
Returns an iterator function that iterates over the range of numbers specified.
Argument | Type | Description | Default
---------|------|-------------|---------
first | `Int` | The starting value of the range. | -
last | `Int` | The ending value of the range. | -
step | `Int?` | An optional step size to use. If unspecified or `none`, the step will be inferred to be `+1` if `last >= first`, otherwise `-1`. | `none`
**Return:** An iterator function that returns each integer in the given range (inclusive).
**Example:**
```tomo
iter := 2.to(5)
assert iter() == 2
assert iter() == 3
assert iter() == 4
assert iter() == 5
assert iter() == none
assert [x for x in 2.to(5)] == [2, 3, 4, 5]
assert [x for x in 5.to(2)] == [5, 4, 3, 2]
assert [x for x in 2.to(5, step=2)] == [2, 4]
```
|