// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Diagnostics; using System.Runtime.CompilerServices; namespace System { /// Represent a range has start and end indexes. /// /// Range is used by the C# compiler to support the range syntax. /// /// int[] someArray = new int[5] { 1, 2, 3, 4, 5 }; /// int[] subArray1 = someArray[0..2]; // { 1, 2 } /// int[] subArray2 = someArray[1..^0]; // { 2, 3, 4, 5 } /// /// public readonly struct Range : IEquatable { /// Represent the inclusive start index of the Range. public Index Start { get; } /// Represent the exclusive end index of the Range. public Index End { get; } /// Construct a Range object using the start and end indexes. /// Represent the inclusive start index of the range. /// Represent the exclusive end index of the range. public Range(Index start, Index end) { Start = start; End = end; } /// Indicates whether the current Range object is equal to another object of the same type. /// An object to compare with this object public override bool Equals(object value) { if (value is Range) { Range r = (Range)value; return r.Start.Equals(Start) && r.End.Equals(End); } return false; } /// Indicates whether the current Range object is equal to another Range object. /// An object to compare with this object public bool Equals (Range other) => other.Start.Equals(Start) && other.End.Equals(End); /// Returns the hash code for this instance. public override int GetHashCode() { return HashCode.Combine(Start.GetHashCode(), End.GetHashCode()); } /// Converts the value of the current Range object to its equivalent string representation. public override string ToString() { Span span = stackalloc char[2 + (2 * 11)]; // 2 for "..", then for each index 1 for '^' and 10 for longest possible uint int charsWritten; int pos = 0; if (Start.IsFromEnd) { span[0] = '^'; pos = 1; } bool formatted = ((uint)Start.Value).TryFormat(span.Slice(pos), out charsWritten); Debug.Assert(formatted); pos += charsWritten; span[pos++] = '.'; span[pos++] = '.'; if (End.IsFromEnd) { span[pos++] = '^'; } formatted = ((uint)End.Value).TryFormat(span.Slice(pos), out charsWritten); Debug.Assert(formatted); pos += charsWritten; return new string(span.Slice(0, pos)); } /// Create a Range object starting from start index to the end of the collection. public static Range StartAt(Index start) => new Range(start, Index.End); /// Create a Range object starting from first element in the collection to the end Index. public static Range EndAt(Index end) => new Range(Index.Start, end); /// Create a Range object starting from first element to the end. public static Range All => new Range(Index.Start, Index.End); /// Destruct the range object according to a collection length and return the start offset from the beginning and the length of this range. /// The length of the collection that the range will be used with. length has to be a positive value /// /// For performance reason, we don't validate the input length parameter against negative values. /// It is expected Range will be used with collections which always have non negative length/count. /// We validate the range is inside the length scope though. /// [MethodImpl(MethodImplOptions.AggressiveInlining)] public OffsetAndLength GetOffsetAndLength(int length) { int start; Index startIndex = Start; if (startIndex.IsFromEnd) start = length - startIndex.Value; else start = startIndex.Value; int end; Index endIndex = End; if (endIndex.IsFromEnd) end = length - endIndex.Value; else end = endIndex.Value; if ((uint)end > (uint)length || (uint)start > (uint)end) { ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.length); } return new OffsetAndLength(start, end - start); } public readonly struct OffsetAndLength { public int Offset { get; } public int Length { get; } public OffsetAndLength(int offset, int length) { Offset = offset; Length = length; } public void Deconstruct(out int offset, out int length) { offset = Offset; length = Length; } } } }