Files
Odin/core
Jeroen van Rijn 18dda6ff9d Start of core:math/bigint
We have:
- `init` to create a new `Int`
- `init(from_integer)` to create a new `Int` and set it to `from_integer`.
- `set(Int, from_integer)` to set an `Int` to `from_integer`
- `add(dest, a, b)` to add `a` and `b` into `dest`.
- `sub(dest, a, b)` to subtract `b` from `a` and put the result in `dest`.

And a few helper functions, like:
- `is_zero`, `is_negative`, ...
- `grow`, `shrink`, `clear`, `zero`
2021-08-11 20:59:50 +02:00
..
2021-06-26 23:45:45 +01:00
2021-04-01 10:06:00 +01:00
2021-08-09 16:26:51 +01:00
2021-06-24 19:06:39 +02:00
2021-06-27 16:48:12 +02:00
2021-03-13 21:18:07 +00:00
2021-08-11 20:59:50 +02:00
2021-08-04 00:36:10 +01:00
2021-07-05 16:36:07 +01:00