4 instantiations of Index
Microsoft.Interop.JavaScript.JSImportGenerator (4)
src\libraries\System.Private.CoreLib\src\System\Index.cs (4)
54public static Index Start => new Index(0); 57public static Index End => new Index(~0); 69return new Index(value); 82return new Index(~value);
9 references to Index
Microsoft.Interop.JavaScript.JSImportGenerator (9)
src\libraries\System.Private.CoreLib\src\System\Index.cs (9)
23readonly struct Index : IEquatable<Index> 54public static Index Start => new Index(0); 57public static Index End => new Index(~0); 62public static Index FromStart(int value) 75public static Index FromEnd(int value) 125public override bool Equals([NotNullWhen(true)] object? value) => value is Index && _value == ((Index)value)._value; 129public bool Equals(Index other) => _value == other._value; 135public static implicit operator Index(int value) => FromStart(value);