ToolboxJoinInterpolatablesT Method |
http://www.emgu.com
Joining multiple index ascending IInterpolatables together as a single index ascending IInterpolatable.
Namespace: Emgu.UtilAssembly: Emgu.Util (in Emgu.Util.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static IEnumerable<T> JoinInterpolatables<T>(
params IEnumerable<T>[] enums
)
where T : new(), Object, IInterpolatable<T>
Public Shared Function JoinInterpolatables(Of T As {New, Object, IInterpolatable(Of T)}) (
ParamArray enums As IEnumerable(Of T)()
) As IEnumerable(Of T)
public:
generic<typename T>
where T : gcnew(), Object, IInterpolatable<T>
static IEnumerable<T>^ JoinInterpolatables(
... array<IEnumerable<T>^>^ enums
)
static member JoinInterpolatables :
enums : IEnumerable<'T>[] -> IEnumerable<'T> when 'T : new() and Object and IInterpolatable<'T>
Parameters
- enums
- Type: System.Collections.GenericIEnumerableT
The enumerables, each should be stored in index ascending order
Type Parameters
- T
- The type of objects that will be joined
Return Value
Type:
IEnumerableTA single enumerable sorted in index ascending order
See Also