Skip to content

Methods_T_CodeJam_Ranges_Range_1

Andrew Koryavchenko edited this page Jul 4, 2017 · 5 revisions

Range(T) Methods

The Range(T) generic type exposes the following members.

Methods

 

Name Description
Public method Equals(Object) Indicates whether the current range and a specified object are equal. (Overrides ValueType.Equals(Object).)
Public method Equals(Range(T)) Indicates whether the current range is equal to another.
Public method GetHashCode Returns a hash code for the current range. (Overrides ValueType.GetHashCode().)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method ToString() Returns string representation of the range. (Overrides ValueType.ToString().)
Public method ToString(IFormatProvider) Returns string representation of the range using the specified format string. If T does not implement the format string is ignored.
Public method ToString(String) Returns string representation of the range using the specified format string. If T does not implement the format string is ignored.
Public method ToString(String, IFormatProvider) Returns string representation of the range using the specified format string. If T does not implement the format string is ignored.
  Back to Top

Extension Methods

 

Name Description
Public Extension Method Clamp(T) Ensures that the value fits into a range. (Defined by RangeExtensions.)
Public Extension Method Contains(T)(T) Overloaded.
Determines whether the range contains the specified value. (Defined by RangeExtensions.)
Public Extension Method Contains(T)(RangeBoundaryFrom(T)) Overloaded.
Determines whether the range contains the specified range boundary. (Defined by RangeExtensions.)
Public Extension Method Contains(T)(RangeBoundaryTo(T)) Overloaded.
Determines whether the range contains the specified range boundary. (Defined by RangeExtensions.)
Public Extension Method Contains(T)(T, T) Overloaded.
Determines whether the range contains another range. (Defined by RangeExtensions.)
Public Extension Method EndsBefore(T)(T) Overloaded.
Determines whether the range ends before the value specified. (Defined by RangeExtensions.)
Public Extension Method EndsBefore(T)(RangeBoundaryFrom(T)) Overloaded.
Determines whether the range ends before the boundary specified. (Defined by RangeExtensions.)
Public Extension Method EndsBefore(T)(RangeBoundaryTo(T)) Overloaded.
Determines whether the range ends before the boundary specified. (Defined by RangeExtensions.)
Public Extension Method ExtendFrom(T)(T) Overloaded.
Extends the range from the left. (Defined by RangeExtensions.)
Public Extension Method ExtendFrom(T)(RangeBoundaryFrom(T)) Overloaded.
Extends the range from the left. (Defined by RangeExtensions.)
Public Extension Method ExtendTo(T)(T) Overloaded.
Extends the range from the right. (Defined by RangeExtensions.)
Public Extension Method ExtendTo(T)(RangeBoundaryTo(T)) Overloaded.
Extends the range from the right. (Defined by RangeExtensions.)
Public Extension Method GetComplementation(T) Returns complementation composite range. Result range contains result of (infinityRange.Exclude(range). (Defined by CompositeRangeExtensions.)
Public Extension Method HasIntersection(T)(T, T) Overloaded.
Determines whether the range has intersection with another range. (Defined by RangeExtensions.)
Public Extension Method HasIntersection(T, TRange)(TRange) Overloaded.
Determines whether the range has intersection with another range. (Defined by RangeExtensions.)
Public Extension Method Intersect(T)(T, T) Overloaded.
Returns an intersection of the the ranges. (Defined by RangeExtensions.)
Public Extension Method Intersect(T, TRange)(TRange) Overloaded.
Returns an intersection of the the ranges. (Defined by RangeExtensions.)
Public Extension Method MakeExclusive(T) Replaces inclusive boundaries with exclusive ones with the values from the selector callbacks (Defined by RangeExtensions.)
Public Extension Method MakeInclusive(T) Replaces exclusive boundaries with inclusive ones with the values from the selector callbacks (Defined by RangeExtensions.)
Public Extension Method StartsAfter(T)(T) Overloaded.
Determines whether the range starts after the value specified. (Defined by RangeExtensions.)
Public Extension Method StartsAfter(T)(RangeBoundaryFrom(T)) Overloaded.
Determines whether the range starts after the boundary specified. (Defined by RangeExtensions.)
Public Extension Method StartsAfter(T)(RangeBoundaryTo(T)) Overloaded.
Determines whether the range starts after the boundary specified. (Defined by RangeExtensions.)
Public Extension Method ToCompositeRange(T) Converts range to the composite range. (Defined by CompositeRangeExtensions.)
Public Extension Method TrimFrom(T)(T) Overloaded.
Trims the range from the left. (Defined by RangeExtensions.)
Public Extension Method TrimFrom(T)(RangeBoundaryFrom(T)) Overloaded.
Trims the range from the left. (Defined by RangeExtensions.)
Public Extension Method TrimTo(T)(T) Overloaded.
Trims the range from the right. (Defined by RangeExtensions.)
Public Extension Method TrimTo(T)(RangeBoundaryTo(T)) Overloaded.
Trims the range from the right. (Defined by RangeExtensions.)
Public Extension Method Union(T)(T, T) Overloaded.
Returns a union range containing both of the ranges. (Defined by RangeExtensions.)
Public Extension Method Union(T, TRange)(TRange) Overloaded.
Returns a union range containing both of the ranges. (Defined by RangeExtensions.)
Public Extension Method WithKey(T, TKey2) Creates a new range with the key specified. (Defined by RangeExtensions.)
Public Extension Method WithValues(T, T2)(Func(T, T2)) Overloaded.
Updates the values of the boundaries of the range. (Defined by RangeExtensions.)
Public Extension Method WithValues(T, T2)(Func(T, T2), Func(T, T2)) Overloaded.
Updates the values of the boundaries of the range. (Defined by RangeExtensions.)
  Back to Top

See Also

Reference

Range(T) Structure
CodeJam.Ranges Namespace

Clone this wiki locally