Adds two non-zero integers, returning a + b as a NonZeroUint16.
Converts an arbitrary number into a NonZeroUint16, rounding to the
nearest integer and saturating the result into the range [MIN_VALUE, MAX_VALUE].
Unlike asNonZeroUint16, this is total: out-of-range inputs are clamped to
the nearest representable NonZeroUint16 instead of throwing.
Type guard that checks if a value is a non-zero integer in [1, 2^16).
isNonZeroUint16 for usage examples
Readonlymax: (...values: readonly WithSmallInt<PositiveUint16>[]) => PositiveUint16Returns the largest of the given non-zero integers.
The largest value representable as NonZeroUint16 (the upper saturation
target of fromNumber).
Readonlymin: (...values: readonly WithSmallInt<PositiveUint16>[]) => PositiveUint16Returns the smallest of the given non-zero integers.
The smallest value representable as NonZeroUint16 (the lower saturation
target of fromNumber).
Multiplies two non-zero integers, returning a * b as a NonZeroUint16.
Raises a to the power b, returning a ** b as a NonZeroUint16
(floored to an integer).
Generates a random NonZeroUint16 within the given range.
The range is inclusive on both ends.
Namespace providing type-safe operations for the
NonZeroUint16branded type.The
NonZeroUint16type represents a non-zero integer in [1, 2^16). Division (div) uses floor division.