MCPcopy Index your code
hub / github.com/brianc/node-postgres / int32

Method int32

packages/pg-protocol/src/buffer-reader.ts:26–30  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

24 }
25
26 public int32(): number {
27 const result = this.buffer.readInt32BE(this.offset)
28 this.offset += 4
29 return result
30 }
31
32 public uint32(): number {
33 const result = this.buffer.readUInt32BE(this.offset)

Callers 6

parseNotificationMessageFunction · 0.80
parseFieldFunction · 0.80
parseDataRowMessageFunction · 0.80
parseBackendKeyDataFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected