Whetstone Class reference
Whetstone Class reference
Whetstone
WhetStone Namespaces
WhetStone.Looping
zipUnBound Class
zipUnBound Methods
ZipUnBound Method
ZipUnBound Method (IEnumerable(IEnumerable(Object)))
ZipUnBound Method (IEnumerable(IList(Object)))
ZipUnBound(T) Method (IEnumerable(IEnumerable(T)), T)
ZipUnBound(T) Method (IEnumerable(IList(T)), T)
ZipUnBound(T1, T2) Method (IEnumerable(T1), IEnumerable(T2), T1, T2)
ZipUnBound(T1, T2) Method (IList(T1), IList(T2), T1, T2)
ZipUnBound(T1, T2, T3) Method (IEnumerable(T1), IEnumerable(T2), IEnumerable(T3), T1, T2, T3)
ZipUnBound(T1, T2, T3) Method (IList(T1), IList(T2), IList(T3), T1, T2, T3)
zipUnBound
ZipUnBound
T
Method (IEnumerable
IList
T
,
T
)
Get all the elements in
IList
T
s spliced together, continuing until they all end.
Namespace:
WhetStone.Looping
Assembly:
WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
Copy
public
static
IList
<
IList
<T>>
ZipUnBound
<T>(
this
IEnumerable
<
IList
<T>>
this
, T
nilValue
)
Parameters
this
Type:
System.Collections.Generic
IEnumerable
IList
T
The
IList
T
s to zip.
nilValue
Type:
T
The default value to assign when an
IList
T
has ended.
Type Parameters
T
The type of the
IList
T
.
Return Value
Type:
IList
IList
T
this
transposed, filling ended
IList
T
s with
nilValue
.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerable
IList
T
. 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
Reference
zipUnBound Class
ZipUnBound Overload
WhetStone.Looping Namespace