apache-arrow
Version:
Apache Arrow columnar in-memory format
38 lines (36 loc) • 1.09 kB
JavaScript
;
// automatically generated by the FlatBuffers compiler, do not modify
Object.defineProperty(exports, "__esModule", { value: true });
exports.Bool = void 0;
const flatbuffers = require("flatbuffers");
class Bool {
constructor() {
this.bb = null;
this.bb_pos = 0;
}
__init(i, bb) {
this.bb_pos = i;
this.bb = bb;
return this;
}
static getRootAsBool(bb, obj) {
return (obj || new Bool()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static getSizePrefixedRootAsBool(bb, obj) {
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
return (obj || new Bool()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static startBool(builder) {
builder.startObject(0);
}
static endBool(builder) {
const offset = builder.endObject();
return offset;
}
static createBool(builder) {
Bool.startBool(builder);
return Bool.endBool(builder);
}
}
exports.Bool = Bool;
//# sourceMappingURL=bool.js.map