ts-data-forge
    Preparing search index...

    Type Alias Int8

    Int8: TtfImported_Int8

    Namespace providing type-safe operations for Int8 (8-bit signed integer) branded types.

    Int8 represents signed integers in the range [-128, 127], equivalent to a signed byte in many programming languages. All operations automatically clamp results to stay within this range, preventing overflow/underflow issues.

    This type is useful for:

    • Binary data processing (signed bytes)
    • Small integer values with known bounds
    • Embedded systems programming
    • Memory-efficient integer storage
    • Image processing (signed pixel offsets)