3 instantiations of Range
Microsoft.CodeAnalysis.Contracts.Package (3)
Range.cs (3)
69public static Range StartAt(Index start) => new Range(start, Index.End); 72public static Range EndAt(Index end) => new Range(Index.Start, end); 75public static Range All => new Range(Index.Start, Index.End);
6 references to Range
Microsoft.CodeAnalysis.Contracts.Package (6)
Range.cs (6)
27internal readonly struct Range : IEquatable<Range> 47value is Range r && 53public bool Equals(Range other) => other.Start.Equals(Start) && other.End.Equals(End); 69public static Range StartAt(Index start) => new Range(start, Index.End); 72public static Range EndAt(Index end) => new Range(Index.Start, end); 75public static Range All => new Range(Index.Start, Index.End);