NegativeInt overview

Added in v1.0.0


Table of contents


Number

NegativeInt

Negative integer branded newtype.

Represents negative integers:

 { z | z ∈ ℤ, z >= -2 ** 53 + 1, z < 0 }

Signature

export declare const NegativeInt: Schema<
  Opaque<number, IntBrand<-9007199254740991, -1>>,
  Opaque<number, IntBrand<-9007199254740991, -1>>
>

Added in v1.0.0