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