Nat16
16-bit unsigned integers with checked arithmetic
Most operations are available as built-in operators (e.g. 1 + 1
).
toNat
let toNat : Nat16 -> Nat
Conversion.
fromNat
let fromNat : Nat -> Nat16
Conversion. Traps on overflow/underflow.
fromIntWrap
let fromIntWrap : Int -> Nat16
Conversion. Wraps on overflow/underflow.
toText
func toText(x : Nat16) : Text
Returns the Text representation of x
.
bittest
func bittest(x : Nat16, p : Nat) : Bool
Returns the value of bit p mod 16
in x
, (x & 2^(p mod 16)) == 2^(p mod 16)
.