ToolboxJoinInterpolatablesT Method |
http://www.emgu.com
Joining multiple index ascending IInterpolatables together as a single index ascending IInterpolatable.
Namespace:
Emgu.TF.Util
Assembly:
Emgu.TF.Lite.World (in Emgu.TF.Lite.World.dll) Version: 1.13.1.439 (1.13.1.439)
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