Enhanced C#
Language of your choice: library documentation

Documentation moved to ecsharp.net

GitHub doesn't support HTTP redirects, so you'll be redirected in 3 seconds.

 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
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

int Loyc.Collections.Impl.InternalSetStats.ItemCount

Number of items in the set.

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.

int Loyc.Collections.Impl.InternalSetStats.LeafCount

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

int Loyc.Collections.Impl.InternalSetStats.MaxDepthNodes

Number of nodes that have an overflow list.

int Loyc.Collections.Impl.InternalSetStats.NodeCount

Total number of nodes.