3 instantiations of Range
DesignSurfaceExt (3)
Framework\Range.cs (3)
91public static Range StartAt(Index start) => new(start, Index.End); 94public static Range EndAt(Index end) => new(Index.Start, end); 97public static Range All => new(Index.Start, Index.End);
6 references to Range
DesignSurfaceExt (6)
Framework\Range.cs (6)
15public readonly struct Range : IEquatable<Range> 36value is Range r && 43public bool Equals(Range other) => other.Start.Equals(Start) && other.End.Equals(End); 91public static Range StartAt(Index start) => new(start, Index.End); 94public static Range EndAt(Index end) => new(Index.Start, end); 97public static Range All => new(Index.Start, Index.End);