3 instantiations of Range
Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers (3)
src\Dependencies\Contracts\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);
7 references to Range
Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers (7)
src\Dependencies\Contracts\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);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Extensions\Symbols\ITypeSymbolExtensions.cs (1)
742or nameof(Range)