ts-data-forge
    Preparing search index...

    Variable isInt32Const

    isInt32: (a: number) => a is Int32 = is

    Type guard that checks if a value is an integer in [-2^31, 2^31).

    Returns true for an integer in [-2^31, 2^31) — a value with no fractional component.

    Type Declaration

      • (a: number): a is Int32
      • Parameters

        • a: number

        Returns a is Int32

        true if the value is an integer in [-2^31, 2^31), false otherwise