MCPcopy Index your code
hub / github.com/ColmapView/Colmapview.github.io / readUint64

Method readUint64

src/parsers/BinaryReader.ts:43–47  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

41 }
42
43 readUint64(): bigint {
44 const val = this.view.getBigUint64(this.offset, true);
45 this.offset += 8;
46 return val;
47 }
48
49 readUint64AsNumber(): number {
50 return Number(this.readUint64());

Callers 3

readUint64AsNumberMethod · 0.95
parsePoints3DBinaryFunction · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected