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

Method readInt64LE

packages/alphatab/src/io/IOHelper.ts:39–43  ·  view source on GitHub ↗
(input: IReadable)

Source from the content-addressed store, hash-verified

37 }
38
39 public static readInt64LE(input: IReadable): number {
40 const b = new Uint8Array(8);
41 input.read(b, 0, b.length);
42 return TypeConversions.bytesToInt64LE(b);
43 }
44
45 public static readUInt32LE(input: IReadable): number {
46 const ch1: number = input.readByte();

Callers 1

_readPageMethod · 0.80

Calls 2

readMethod · 0.65
bytesToInt64LEMethod · 0.45

Tested by

no test coverage detected