-
Notifications
You must be signed in to change notification settings - Fork 35
T_CodeJam_Ranges_RangeIntersection_2
Andrew Koryavchenko edited this page Jun 17, 2018
·
3 revisions
Describes an intersection of multiple ranges.
Namespace: CodeJam.Ranges
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public struct RangeIntersection<T, TKey> : IFormattable
VB
Public Structure RangeIntersection(Of T, TKey)
Implements IFormattable
F#
[<SealedAttribute>]
type RangeIntersection<'T, 'TKey> =
struct
interface IFormattable
end
- T
- The type of the range values.
- TKey
- The type of the range key
Name | Description | |
---|---|---|
IntersectionRange | The common part for all ranges in intersection. | |
IsEmpty | Gets a value indicating whether the intersection does not contain any ranges. | |
IsNotEmpty | Gets a value indicating whether the intersection contains any ranges. | |
Ranges | The ranges in the intersection, if any. |
Name | Description | |
---|---|---|
Equals | Indicates whether this instance and a specified object are equal. (Inherited from ValueType.) | |
GetHashCode | Returns the hash code for this instance. (Inherited from ValueType.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
ToString() | Returns string representation of the range intersection. (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. |