bigint-mod-arith/types/bitLength.d.ts

8 lines
215 B
TypeScript
Raw Normal View History

/**
2022-10-03 15:35:35 +00:00
* Returns the (minimum) length of a number expressed in bits.
*
* @param a
* @returns The bit length
*/
export declare function bitLength(a: number | bigint): number;
//# sourceMappingURL=bitLength.d.ts.map