5 writes to _value
System.Numerics.Tensors (5)
System\NIndex.cs (5)
37_value = ~value; 39_value = value; 51_value = ~index.Value; 53_value = index.Value; 59_value = value;
10 references to _value
System.Numerics.Tensors (10)
System\NIndex.cs (10)
111if (_value < 0) 112return ~_value; 114return _value; 119public bool IsFromEnd => _value < 0; 132nint offset = _value; 146public override bool Equals([NotNullWhen(true)] object? value) => value is NIndex other && _value == other._value; 150public bool Equals(NIndex other) => _value == other._value; 153public override int GetHashCode() => _value.GetHashCode();