Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Record ¶
type Record struct { Number int Type RecordType Offset int }
A Record is a pointer to a record stored in a segment.
type RecordType ¶
type RecordType int
A RecordType is a type of a record.
const ( // RecordTypeMapLeaf is the type of a map leaf. RecordTypeMapLeaf RecordType = iota // RecordTypeMapBranch is the type of a map branch. RecordTypeMapBranch // RecordTypeListBucket is the type of a list bucket. RecordTypeListBucket // RecordTypeList is a list, it points to a list bucket. RecordTypeList // RecordTypeValue is the type of a simple value record RecordTypeValue // RecordTypeBlock the type of a block record. RecordTypeBlock // RecordTypeTemplate is the type of a node template record. RecordTypeTemplate // RecordTypeNode is the type of a node record. RecordTypeNode // RecordTypeBlobID is the type of a binary object identifier. RecordTypeBlobID )
Click to show internal directories.
Click to hide internal directories.