-
Notifications
You must be signed in to change notification settings - Fork 35
Methods_T_CodeJam_Ranges_Range_2
Andrew Koryavchenko edited this page Jun 17, 2018
·
4 revisions
The Range(T, TKey) generic type exposes the following members.
Name | Description | |
---|---|---|
Clamp | Ensures that the value fits into a range. | |
Contains(T) | Determines whether the range contains the specified value. | |
Contains(Range(T)) | Determines whether the range contains another range. | |
Contains(RangeBoundaryFrom(T)) | Determines whether the range contains the specified range boundary. | |
Contains(RangeBoundaryTo(T)) | Determines whether the range contains the specified range boundary. | |
Contains(T, T) | Determines whether the range contains another range. | |
Contains(TKey2)(Range(T, TKey2)) | Determines whether the range contains another range. | |
EndsBefore(T) | Determines whether the range ends before the value specified. | |
EndsBefore(Range(T)) | Determines whether the range ends before the range specified. | |
EndsBefore(RangeBoundaryFrom(T)) | Determines whether the range ends before the boundary specified. | |
EndsBefore(RangeBoundaryTo(T)) | Determines whether the range ends before the boundary specified. | |
EndsBefore(TKey2)(Range(T, TKey2)) | Determines whether the range ends before the range specified. | |
Equals(Object) | Indicates whether the current range and a specified object are equal. (Overrides ValueType.Equals(Object).) | |
Equals(Range(T, TKey)) | Indicates whether the current range is equal to another. | |
ExtendFrom(T) | Extends the range from the left. | |
ExtendFrom(RangeBoundaryFrom(T)) | Extends the range from the left. | |
ExtendTo(T) | Extends the range from the right. | |
ExtendTo(RangeBoundaryTo(T)) | Extends the range from the right. | |
GetHashCode | Returns a hash code for the current range. (Overrides ValueType.GetHashCode().) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
HasIntersection(Range(T)) | Determines whether the range has intersection with another range. | |
HasIntersection(T, T) | Determines whether the range has intersection with another range. | |
HasIntersection(TKey2)(Range(T, TKey2)) | Determines whether the range has intersection with another range. | |
Intersect(Range(T)) | Returns an intersection of the the ranges. | |
Intersect(T, T) | Returns an intersection of the the ranges. | |
Intersect(TKey2)(Range(T, TKey2)) | Returns an intersection of the the ranges. | |
MakeExclusive | Replaces inclusive boundaries with exclusive ones with the values from the selector callbacks | |
MakeInclusive | Replaces exclusive boundaries with inclusive ones with the values from the selector callbacks | |
StartsAfter(T) | Determines whether the range starts after the value specified. | |
StartsAfter(Range(T)) | Determines whether the range starts after the range specified. | |
StartsAfter(RangeBoundaryFrom(T)) | Determines whether the range starts after the boundary specified. | |
StartsAfter(RangeBoundaryTo(T)) | Determines whether the range starts after the boundary specified. | |
StartsAfter(TKey2)(Range(T, TKey2)) | Determines whether the range starts after the range specified. | |
ToString() | Returns string representation of the range. (Overrides ValueType.ToString().) | |
ToString(IFormatProvider) | Returns string representation of the range using the specified format string. If T does not implement the format string is ignored. | |
ToString(String) | Returns string representation of the range using the specified format string. If T does not implement the format string is ignored. | |
ToString(String, IFormatProvider) | Returns string representation of the range using the specified format string. If T does not implement the format string is ignored. | |
TrimFrom(T) | Trims the range from the left. | |
TrimFrom(RangeBoundaryFrom(T)) | Trims the range from the left. | |
TrimTo(T) | Trims the range from the right. | |
TrimTo(RangeBoundaryTo(T)) | Trims the range from the right. | |
Union(T) | Returns a union range containing original range and the value. | |
Union(Range(T)) | Returns a union range containing both of the ranges. | |
Union(T, T) | Returns a union range containing both of the ranges. | |
Union(TKey2)(Range(T, TKey2)) | Returns a union range containing both of the ranges. | |
WithKey(TKey2) | Creates a new range with the key specified. | |
WithoutKey | Creates a range without a range key. | |
WithValues(T2)(Func(T, T2)) | Updates the values of the boundaries of the range. | |
WithValues(T2)(Func(T, T2), Func(T, T2)) | Updates the values of the boundaries of the range. |