3 writes to _value
Microsoft.CommonLanguageServerProtocol.Framework.Package (3)
src\Dependencies\Contracts\Index.cs (3)
46
_value
= ~value;
48
_value
= value;
54
_value
= value;
10 references to _value
Microsoft.CommonLanguageServerProtocol.Framework.Package (10)
src\Dependencies\Contracts\Index.cs (10)
94
if (
_value
< 0)
95
return ~
_value
;
97
return
_value
;
102
public bool IsFromEnd =>
_value
< 0;
115
int offset =
_value
;
129
public override bool Equals(object? value) => value is Index &&
_value
== ((Index)value).
_value
;
133
public bool Equals(Index other) =>
_value
== other.
_value
;
136
public override int GetHashCode() =>
_value
;