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

8 lines
189 B
TypeScript
Raw Normal View History

/**
* Returns the bitlength of a number
*
* @param a
* @returns The bit length
*/
export declare function bitLength(a: number | bigint): number;
//# sourceMappingURL=bitLength.d.ts.map