MCPcopy Create free account
hub / github.com/CoderLine/alphaTab / _getRevBits

Method _getRevBits

packages/alphatab/src/zip/Inflate.ts:324–326  ·  view source on GitHub ↗
(n: number)

Source from the content-addressed store, hash-verified

322 }
323
324 private _getRevBits(n: number): number {
325 return n === 0 ? 0 : this._getBit() ? (1 << (n - 1)) | this._getRevBits(n - 1) : this._getRevBits(n - 1);
326 }
327
328 private _resetBits(): void {
329 this._bits = 0;

Callers 1

_inflateLoopMethod · 0.95

Calls 1

_getBitMethod · 0.95

Tested by

no test coverage detected