package tezos-protocol-011-PtHangz2
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=7062cd57addd452852598a2214ade393130efa087b99068d53713bdf912b3680
sha512=08e4091144a03ce3c107fb91a66501bd8b65ca3278917c455a2eaac6df3e108ade63f6ab8340a4bb152d60f404326e464d0ec95d26cafe8e82f870465d24a5fc
doc/tezos-protocol-011-PtHangz2.raw/Tezos_raw_protocol_011_PtHangz2/Tez_repr/index.html
Module Tezos_raw_protocol_011_PtHangz2.Tez_reprSource
Internal representation of the Tez currency. Behaves mostly like a natural number where number 1 represents 1/1,000,000 Tez (1 micro-Tez or mutez). It's protected from ever becoming negative and overflowing by special arithmetic functions, which fail in case something undesired would happen. When divided, it's always rounded down to 1 mutez.
Internally encoded as int64, which may be relevant to guard against overflow errors.
Tez subtraction.
a -? b is the difference between a and b given that b is greater or equal to a. Otherwise an error (Subtraction underflow) is returned.
Tez addition.
a +? b is the sum of a and b or an Addition overflow error in case of overflow.
Tez multiplication by an integral factor.
a *? m is a multiplied by m (which must be non-negative) or a Multiplication_overflow error.
Tez division by an integral divisor.
a /? d is a divided by d (which must be positive). Given that d is positive, this function is safe. The result is rounded down to 1 mutez.
of_mutez_exn n fails if n is negative. It should only be used at toplevel for constants.