C# Class DBreeze.LianaTrie.LTrieKid

Show file Open project: hhblaze/DBreeze Class Usage Examples

Public Properties

Property Type Description
Exists bool
LinkToNode bool
Ptr byte[]
Val int
ValueKid bool

Property Details

Exists public property

Default value is false
public bool Exists
return bool

LinkToNode public property

Works when ValueKid = false. True is link to node False if link to value. Default is true.
public bool LinkToNode
return bool

Ptr public property

Pointer to the next node or to the value
public byte[] Ptr
return byte[]

Val public property

0-255, in case if ValueKid = false, 256 if ValueKid = true; Pointer to the next node or to the value Default value is false Works when ValueKid = false. True is link to node False if link to value. Default is true. Identifies that it's a value for this node, not the kid from 0-255. If true, Ptr has link to the value. Default is false 0-255, in case if ValueKid = false, 256 if ValueKid = true;
public int Val
return int

ValueKid public property

Identifies that it's a value for this node, not the kid from 0-255. If true, Ptr has link to the value. Default is false
public bool ValueKid
return bool