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