Libfunc for adding two BoundedInts.
The result is a BoundedInt.
Libfunc for constraining a BoundedInt<Min, Max> to one of two non-empty ranges: [Min, Boundary)
or [Boundary, Max]. The libfunc is also applicable for standard types such as u* and i*.
Libfunc for dividing two non negative BoundedInts and getting the quotient and remainder.
Libfunc for checking whether the given bounded int is zero or not, and returning a non-zero
wrapped value in case of success.
Libfunc for multiplying two BoundedInts.
The result is a BoundedInt.
Libfunc for subtracting two BoundedInts.
The result is a BoundedInt.
Type for BoundedInt.
The native type of the Cairo architecture.
Libfunc for wrapping a given bounded int with non-zero, given 0 is not in the range.