UNPKG

rc-js-util

Version:

A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.

18 lines 464 B
import { numberGetHexString } from "./impl/number-get-hex-string.js"; import { _F32 } from "./impl/_f32.js"; import { _F64 } from "./impl/_f64.js"; /** * @public * Utilities that apply to numbers. */ export class _Number { constructor() { } } /** {@inheritDoc _F32} */ _Number.f32 = _F32; /** {@inheritDoc _F64} */ _Number.f64 = _F64; /** {@inheritDoc numberGetHexString} */ _Number.getHexString = numberGetHexString; //# sourceMappingURL=_number.js.map