@thi.ng/binary
Version:
100+ assorted binary / bitwise operations, conversions, utilities, lookup tables
14 lines • 401 B
TypeScript
/**
* 8bit values in MSB order (i.e. MSB_BITS[0] = 0x80)
*/
export declare const MSB_BITS8: number[];
/**
* 16bit values in MSB order (i.e. MSB_BITS[0] = 0x8000)
*/
export declare const MSB_BITS16: number[];
/**
* 32bit values in MSB order (i.e. MSB_BITS[0] = 0x80000000)
*/
export declare const MSB_BITS32: number[];
export declare const MASKS: number[];
//# sourceMappingURL=constants.d.ts.map