forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbool.ts
More file actions
36 lines (29 loc) · 1017 Bytes
/
Copy pathbool.ts
File metadata and controls
36 lines (29 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// automatically generated by the FlatBuffers compiler, do not modify
import * as flatbuffers from 'flatbuffers';
export class Bool {
bb: flatbuffers.ByteBuffer|null = null;
bb_pos = 0;
__init(i:number, bb:flatbuffers.ByteBuffer):Bool {
this.bb_pos = i;
this.bb = bb;
return this;
}
static getRootAsBool(bb:flatbuffers.ByteBuffer, obj?:Bool):Bool {
return (obj || new Bool()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static getSizePrefixedRootAsBool(bb:flatbuffers.ByteBuffer, obj?:Bool):Bool {
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
return (obj || new Bool()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static startBool(builder:flatbuffers.Builder) {
builder.startObject(0);
}
static endBool(builder:flatbuffers.Builder):flatbuffers.Offset {
const offset = builder.endObject();
return offset;
}
static createBool(builder:flatbuffers.Builder):flatbuffers.Offset {
Bool.startBool(builder);
return Bool.endBool(builder);
}
}