Back to FabImage Library website
You are here: Start » Function Reference » All Functions » Array Basics » FisFilter_CreateArray
This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.
Header: | STD.h |
---|---|
Namespace: | fis |
Module: | FoundationLite |
Creates an array from up to 8 individual objects.
Syntax
void fis::FisFilter_CreateArray ( const typename ftl::ToOptionalType<const Type&>::Type& inValue1, const typename ftl::ToOptionalType<const Type&>::Type& inValue2, const typename ftl::ToOptionalType<const Type&>::Type& inValue3, const typename ftl::ToOptionalType<const Type&>::Type& inValue4, const typename ftl::ToOptionalType<const Type&>::Type& inValue5, const typename ftl::ToOptionalType<const Type&>::Type& inValue6, const typename ftl::ToOptionalType<const Type&>::Type& inValue7, const typename ftl::ToOptionalType<const Type&>::Type& inValue8, ftl::Array<Type>& outArray )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inValue1 | const typename ToOptionalType<const Type&>::Type& | NIL | First input value |
![]() |
inValue2 | const typename ToOptionalType<const Type&>::Type& | NIL | Second input value |
![]() |
inValue3 | const typename ToOptionalType<const Type&>::Type& | NIL | Third input value |
![]() |
inValue4 | const typename ToOptionalType<const Type&>::Type& | NIL | Fourth input value |
![]() |
inValue5 | const typename ToOptionalType<const Type&>::Type& | NIL | Fifth input value |
![]() |
inValue6 | const typename ToOptionalType<const Type&>::Type& | NIL | Sixth input value |
![]() |
inValue7 | const typename ToOptionalType<const Type&>::Type& | NIL | Seventh input value |
![]() |
inValue8 | const typename ToOptionalType<const Type&>::Type& | NIL | Eighth input value |
![]() |
outArray | Array<Type>& | Constructed array |
Examples
![]() |
![]() |
inValue1 = 1 inValue2 = 2 inValue3 = 4 |
outArray = {1,2,4} |