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