5 writes to _value
System.Numerics.Tensors (5)
System\Buffers\NIndex.cs (5)
36_value = ~value; 38_value = value; 50_value = ~index.Value; 52_value = index.Value; 58_value = value;
10 references to _value
System.Numerics.Tensors (10)
System\Buffers\NIndex.cs (10)
110if (_value < 0) 111return ~_value; 113return _value; 118public bool IsFromEnd => _value < 0; 131nint offset = _value; 145public override bool Equals([NotNullWhen(true)] object? value) => value is NIndex other && _value == other._value; 149public bool Equals(NIndex other) => _value == other._value; 152public override int GetHashCode() => _value.GetHashCode();