UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines 286 B
/** * Get index of the least significant set bit * Also known as ctz32 or "count trailing zeroes" * @see https://graphics.stanford.edu/~seander/bithacks.html * @param {number} v * @returns {number} */ export function lsb_32(v: number): number; //# sourceMappingURL=lsb_32.d.ts.map