 | RangeT Constructor (T, T, IComparerT) |
Constructs a new range including both ends using the specified comparer
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic Range(
T start,
T end,
IComparer<T> comparer
)
Public Sub New (
start As T,
end As T,
comparer As IComparer(Of T)
)
public:
Range(
T start,
T end,
IComparer<T>^ comparer
)
new :
start : 'T *
end : 'T *
comparer : IComparer<'T> -> Range
Parameters
- start
- Type: T
[Missing <param name="start"/> documentation for "M:Koden.Utils.Range`1.#ctor(`0,`0,System.Collections.Generic.IComparer{`0})"]
- end
- Type: T
[Missing <param name="end"/> documentation for "M:Koden.Utils.Range`1.#ctor(`0,`0,System.Collections.Generic.IComparer{`0})"]
- comparer
- Type: System.Collections.GenericIComparerT
[Missing <param name="comparer"/> documentation for "M:Koden.Utils.Range`1.#ctor(`0,`0,System.Collections.Generic.IComparer{`0})"]
See Also