internal HugeBufferEnumerator(HugeBuffer <T> buffer)
 {
     _buffer = buffer;
     _buffer.Acquire();
     _index = UInt64.MaxValue;
 }
Exemple #2
0
 public bool Equals(HugeBuffer <T> other)
 {
     ThrowIfNotAllocatedOrInvalid();
     return(this.handle == other.handle && this.Length == other.Length);
 }