Expand description
Allows to compute on big numbers. No negative numbers support. Provides only some basic mathematical functions.
Structs§
- Places
Row PlacesRow
represents row of decimal places starting at ones (0
index).
Enums§
- Oom
- Order of magnitude enumeration.
- OomKind
- Order of magnitude computational kind.
- Rel
- Relation enumeration.
- RelDec
- Decimal relation enumeration.
Constants§
- SQUARE_
ROOT_ TEN_ COMPARATOR - Represents 1,000 numbers of √10 ≈ 3.16.
Functions§
- add
- Computes
addend1
andaddend2
sum. - divrem
- Computes
dividend
anddivisor
ratio and remainder. - heron_
sqrt - Computes integer square root of
num
. - mul
- Computes
factor1
andfactor2
product. - ord_
of_ mag - Computes order of magnitude for
num
andkind
. - pow
- Computes power
pow
ofbase
. - rel
- Checks relation of
num
tocomparand
. - rel_dec
- Compares decimal places count of
num
andcomparand
. - sub
- Computes
minuend
andsubtrahend
difference.
Type Aliases§
- DecCnt
- Decimal places count.