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

Method readFloat64BE

packages/alphatab/src/io/IOHelper.ts:24–29  ·  view source on GitHub ↗
(readable: IReadable)

Source from the content-addressed store, hash-verified

22 }
23
24 public static readFloat64BE(readable: IReadable): number {
25 const bits = new Uint8Array(8);
26 readable.read(bits, 0, bits.length);
27 bits.reverse();
28 return TypeConversions.bytesToFloat64LE(bits);
29 }
30
31 public static readInt32LE(input: IReadable): number {
32 const ch1: number = input.readByte();

Callers 1

readNoteMethod · 0.80

Calls 3

reverseMethod · 0.95
readMethod · 0.65
bytesToFloat64LEMethod · 0.45

Tested by

no test coverage detected