Enum SparseBufferGrowth
Determines how the size of the subsequent memory chunk must be calculated.
Namespace: DotNext.Buffers
Assembly: DotNext.dll
Syntax
public enum SparseBufferGrowth
Fields
Name | Description |
---|---|
Exponential | Each new memory chunk doubles in size. |
Linear | The size of the new memory chunk is a multiple of the chunk index. |
None | Each memory chunk has identical size. |