Skip to content

T_CodeJam_Ranges_CompositeRange_2

andrewvk edited this page Nov 5, 2016 · 3 revisions

CompositeRange(T, TKey) Structure

Describes a range of the values.

Namespace: CodeJam.Ranges
Assembly: CodeJam (in CodeJam.dll) Version: 1.1.0.0 (1.1.0.0)

Syntax

C#

[SerializableAttribute]
public struct CompositeRange<T, TKey> : IEquatable<CompositeRange<T, TKey>>, 
	IFormattable, ICompositeRange<T>

VB

<SerializableAttribute>
Public Structure CompositeRange(Of T, TKey)
	Implements IEquatable(Of CompositeRange(Of T, TKey)), 
	IFormattable, ICompositeRange(Of T)

F#

[<SealedAttribute>]
[<SerializableAttribute>]
type CompositeRange<'T, 'TKey> =  
    struct
        interface IEquatable<CompositeRange<'T, 'TKey>>
        interface IFormattable
        interface ICompositeRange<'T>
    end

Type Parameters

 

T
The type of the value. Should implement or .
TKey
The type of the range key
  The CompositeRange(T, TKey) type exposes the following members.

Constructors

 

Name Description
Public method CompositeRange(T, TKey)(Range(T, TKey)) Creates instance of .
Public method CompositeRange(T, TKey)(IEnumerable(Range(T, TKey))) Creates instance of .
  Back to Top

Properties

 

Name Description
Public property ContainingRange Range that contains all subranges.
Public property IsEmpty The composite range is empty, ∅.
Public property IsMerged The composite range cannot be simplified anymore. Subranges do not intersect and start one exactly after another.
Public property IsNotEmpty The composite range is NOT empty, ≠ ∅
Public property SubRanges Collection of subranges.
  Back to Top

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(CompositeRange(T, TKey)) 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 Merge Returns simplified composite range. Adjacent ranges with same keys will be merged.
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

Operators

 

Name Description
Public operatorStatic member Equality Implements the operator ==.
Public operatorStatic member Inequality Implements the operator !=.
  Back to Top

Fields

 

Name Description
Public fieldStatic member Empty Empty range, ∅
Public fieldStatic member Infinite Infinite range, (-∞..+∞)
  Back to Top

See Also

Reference

CodeJam.Ranges Namespace
System.IComparable(T)
System.IComparable

Clone this wiki locally