apache-arrow
Version:
Apache Arrow columnar in-memory format
41 lines (39 loc) • 1.13 kB
JavaScript
;
// automatically generated by the FlatBuffers compiler, do not modify
Object.defineProperty(exports, "__esModule", { value: true });
exports.Utf8 = void 0;
const flatbuffers = require("flatbuffers");
/**
* Unicode with UTF-8 encoding
*/
class Utf8 {
constructor() {
this.bb = null;
this.bb_pos = 0;
}
__init(i, bb) {
this.bb_pos = i;
this.bb = bb;
return this;
}
static getRootAsUtf8(bb, obj) {
return (obj || new Utf8()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static getSizePrefixedRootAsUtf8(bb, obj) {
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
return (obj || new Utf8()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static startUtf8(builder) {
builder.startObject(0);
}
static endUtf8(builder) {
const offset = builder.endObject();
return offset;
}
static createUtf8(builder) {
Utf8.startUtf8(builder);
return Utf8.endUtf8(builder);
}
}
exports.Utf8 = Utf8;
//# sourceMappingURL=utf8.js.map