Spaces:
Running
Running
File size: 1,085 Bytes
78c921d |
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 |
// automatically generated by the FlatBuffers compiler, do not modify
import * as flatbuffers from 'flatbuffers';
/**
* These are stored in the flatbuffer in the Type union below
*/
export class Null {
bb: flatbuffers.ByteBuffer|null = null;
bb_pos = 0;
__init(i:number, bb:flatbuffers.ByteBuffer):Null {
this.bb_pos = i;
this.bb = bb;
return this;
}
static getRootAsNull(bb:flatbuffers.ByteBuffer, obj?:Null):Null {
return (obj || new Null()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static getSizePrefixedRootAsNull(bb:flatbuffers.ByteBuffer, obj?:Null):Null {
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
return (obj || new Null()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static startNull(builder:flatbuffers.Builder) {
builder.startObject(0);
}
static endNull(builder:flatbuffers.Builder):flatbuffers.Offset {
const offset = builder.endObject();
return offset;
}
static createNull(builder:flatbuffers.Builder):flatbuffers.Offset {
Null.startNull(builder);
return Null.endNull(builder);
}
}
|