MCPcopy Index your code
hub / github.com/simstudioai/sim / writeI16

Method writeI16

apps/sim/app/api/tools/evernote/lib/thrift.ts:48–51  ·  view source on GitHub ↗
(value: number)

Source from the content-addressed store, hash-verified

46 }
47
48 writeI16(value: number): void {
49 this.buffer.push((value >> 8) & 0xff)
50 this.buffer.push(value & 0xff)
51 }
52
53 writeI32(value: number): void {
54 this.buffer.push((value >> 24) & 0xff)

Callers 1

writeFieldBeginMethod · 0.95

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected