ts-data-forge
    Preparing search index...
    isNonZeroInt32: (a: number) => a is NonZeroInt32 = is

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

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

    Type Declaration

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

        • a: number

        Returns a is NonZeroInt32

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