forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfixed-size-binary.ts
More file actions
49 lines (40 loc) · 1.53 KB
/
Copy pathfixed-size-binary.ts
File metadata and controls
49 lines (40 loc) · 1.53 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
// automatically generated by the FlatBuffers compiler, do not modify
import * as flatbuffers from 'flatbuffers';
export class FixedSizeBinary {
bb: flatbuffers.ByteBuffer|null = null;
bb_pos = 0;
__init(i:number, bb:flatbuffers.ByteBuffer):FixedSizeBinary {
this.bb_pos = i;
this.bb = bb;
return this;
}
static getRootAsFixedSizeBinary(bb:flatbuffers.ByteBuffer, obj?:FixedSizeBinary):FixedSizeBinary {
return (obj || new FixedSizeBinary()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static getSizePrefixedRootAsFixedSizeBinary(bb:flatbuffers.ByteBuffer, obj?:FixedSizeBinary):FixedSizeBinary {
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
return (obj || new FixedSizeBinary()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
/**
* Number of bytes per value
*/
byteWidth():number {
const offset = this.bb!.__offset(this.bb_pos, 4);
return offset ? this.bb!.readInt32(this.bb_pos + offset) : 0;
}
static startFixedSizeBinary(builder:flatbuffers.Builder) {
builder.startObject(1);
}
static addByteWidth(builder:flatbuffers.Builder, byteWidth:number) {
builder.addFieldInt32(0, byteWidth, 0);
}
static endFixedSizeBinary(builder:flatbuffers.Builder):flatbuffers.Offset {
const offset = builder.endObject();
return offset;
}
static createFixedSizeBinary(builder:flatbuffers.Builder, byteWidth:number):flatbuffers.Offset {
FixedSizeBinary.startFixedSizeBinary(builder);
FixedSizeBinary.addByteWidth(builder, byteWidth);
return FixedSizeBinary.endFixedSizeBinary(builder);
}
}