MCPcopy Create free account
hub / github.com/mapbox/pbf / writeFixed32

Method writeFixed32

index.js:263–267  ·  view source on GitHub ↗

@param {number} val

(val)

Source from the content-addressed store, hash-verified

261
262 /** @param {number} val */
263 writeFixed32(val) {
264 this.realloc(4);
265 this.dataView.setInt32(this.pos, val, true);
266 this.pos += 4;
267 }
268
269 /** @param {number} val */
270 writeSFixed32(val) {

Callers 3

writeFixed32FieldMethod · 0.95
writePackedFixed32Function · 0.80
pbf.test.jsFile · 0.80

Calls 1

reallocMethod · 0.95

Tested by

no test coverage detected