 | zipUnBoundZipUnBoundT1, T2, T3 Method (IEnumerableT1, IEnumerableT2, IEnumerableT3, T1, T2, T3) |
Get all the elements in
IEnumerableTs spliced together, continuing until they all end.
Namespace:
WhetStone.Looping
Assembly:
WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntaxpublic static IEnumerable<Tuple<T1, T2, T3>> ZipUnBound<T1, T2, T3>(
this IEnumerable<T1> this,
IEnumerable<T2> other,
IEnumerable<T3> other2,
T1 nilValue1,
T2 nilValue2,
T3 nilValue3
)
Parameters
- this
- Type: System.Collections.GenericIEnumerableT1
The first IEnumerableT. - other
- Type: System.Collections.GenericIEnumerableT2
The second IEnumerableT. - other2
- Type: System.Collections.GenericIEnumerableT3
The third IEnumerableT. - nilValue1
- Type: T1
The default value to assign when this has ended. - nilValue2
- Type: T2
The default value to assign when other has ended. - nilValue3
- Type: T3
The default value to assign when other2 has ended.
Type Parameters
- T1
- The type of the first IEnumerableT.
- T2
- The type of the second IEnumerableT.
- T3
- The type of the third IEnumerableT.
Return Value
Type:
IEnumerableTupleT1,
T2,
T3this transposed, filling ended
IEnumerableTs with
nilValue1,
nilValue2 or
nilValue3.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableT1. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also