NonPositiveInt overview
Added in v1.0.0
Table of contents
Number
NonPositiveInt
NonPositive integer branded newtype.
Represents integers which are negative or zero.
{ z | z ∈ ℤ, z >= -2 ** 53 + 1, z <= 0 }
Signature
export declare const NonPositiveInt: Schema<
Opaque<number, IntBrand<-9007199254740991, 0>>,
Opaque<number, IntBrand<-9007199254740991, 0>>
>
Added in v1.0.0