[]
Joins the list of two RangeElement<T> objects to form a new list of RangeElement<T> objects. The element of the new list is created by intersecting the element of the first list with the element of the second list.
public static List<RangeElement<T>> JointList(List<RangeElement<T>> firstList, List<RangeElement<T>> secondList)
Public Shared Function JointList(firstList As List(Of RangeElement(Of T)), secondList As List(Of RangeElement(Of T))) As List(Of RangeElement(Of T))
Type | Name | Description |
---|---|---|
List<RangeElement<T>> | firstList | The first list |
List<RangeElement<T>> | secondList | The second list |
Type | Description |
---|---|
List<RangeElement<T>> | The new list of RangeElement<T> objects. |