Enhanced C#
Language of your choice: library documentation
Public fields | List of all members
Loyc.Collections.Impl.InternalSetStats Struct Reference

Statistics returned from InternalSet<T>.CountMemory. More...


Source file:

Remarks

Statistics returned from InternalSet<T>.CountMemory.

Public fields

int NodeCount
 Total number of nodes. More...
 
int LeafCount
 Number of nodes that don't have a child array. More...
 
int MaxDepthNodes
 Number of nodes that have an overflow list. More...
 
int ItemCount
 Number of items in the set. More...
 
int ItemsInOverflow
 Number of items that are in overflow lists. Note that if a single item is in an overflow list, it implies that five items share the same hashcode; larger numbers than 1 are harder to interpret, but generally. More...
 

Member Data Documentation

◆ ItemCount

int Loyc.Collections.Impl.InternalSetStats.ItemCount

Number of items in the set.

◆ ItemsInOverflow

int Loyc.Collections.Impl.InternalSetStats.ItemsInOverflow

Number of items that are in overflow lists. Note that if a single item is in an overflow list, it implies that five items share the same hashcode; larger numbers than 1 are harder to interpret, but generally.

◆ LeafCount

int Loyc.Collections.Impl.InternalSetStats.LeafCount

Number of nodes that don't have a child array.

◆ MaxDepthNodes

int Loyc.Collections.Impl.InternalSetStats.MaxDepthNodes

Number of nodes that have an overflow list.

◆ NodeCount

int Loyc.Collections.Impl.InternalSetStats.NodeCount

Total number of nodes.