Joining multiple index ascending IInterpolatables together as a single index ascending IInterpolatable.

Namespace: Emgu.Util
Assembly: Emgu.Util (in Emgu.Util.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static IEnumerable<T> JoinInterpolatables<T>(
	params IEnumerable<T>[] enums
)
where T : new(), IInterpolatable<T>
Public Shared Function JoinInterpolatables(Of T As {New, IInterpolatable(Of T)}) ( _
	ParamArray enums As IEnumerable(Of T)() _
) As IEnumerable(Of T)
public:
generic<typename T>
where T : gcnew(), IInterpolatable<T>
static IEnumerable<T>^ JoinInterpolatables(
	... array<IEnumerable<T>^>^ enums
)

Parameters

enums
array<IEnumerable<(Of <(<'T>)>)>>[]()[][]
The enumerables, each should be stored in index ascending order

Type Parameters

T
The type of objects that will be joined

Return Value

A single enumerable sorted in index ascending order

See Also