3 instantiations of Range
Microsoft.Private.Windows.Core (3)
System.Range.g.cs (3)
61
public static global::System.Range StartAt(global::System.Index start) => new global::System.
Range
(start, global::System.Index.End);
64
public static global::System.Range EndAt(global::System.Index end) => new global::System.
Range
(global::System.Index.Start, end);
67
public static global::System.Range All => new global::System.
Range
(global::System.Index.Start, global::System.Index.End);
9 references to Range
Microsoft.Private.Windows.Core (9)
System.Range.g.cs (8)
20
internal readonly struct Range : global::System.IEquatable<global::System.
Range
>
40
value is global::System.
Range
r &&
46
public bool Equals(global::System.
Range
other) => other.Start.Equals(Start) && other.End.Equals(End);
51
return global::System.
Range
.HashHelpers.Combine(Start.GetHashCode(), End.GetHashCode());
61
public static global::System.
Range
StartAt(global::System.Index start) => new global::System.Range(start, global::System.Index.End);
64
public static global::System.
Range
EndAt(global::System.Index end) => new global::System.Range(global::System.Index.Start, end);
67
public static global::System.
Range
All => new global::System.Range(global::System.Index.Start, global::System.Index.End);
95
global::System.
Range
.ThrowHelper.ThrowArgumentOutOfRangeException();
System\BufferScope.cs (1)
105
public readonly Span<T> this[
Range
range] => _span[range];