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

    Type guard that checks if a value is a non-negative integer in [0, 2^15).

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

    Type Declaration

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

        • a: number

        Returns a is NonNegativeInt16

        true if the value is a non-negative integer in [0, 2^15), false otherwise