Back to FabImage Library websiteYou are here:
Start »
Function Reference »
All Functions »
Array Basics »
FisFilter_ArraySize
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 |
Returns the number of elements in an array.
Syntax
void fis::FisFilter_ArraySize
(
const ftl::Array<Type>& inArray,
int& outSize
)
Parameters
|
Name |
Type |
Default |
Description |
 |
inArray |
const Array<Type>& |
|
Input array |
 |
outSize |
int& |
|
Number of the array elements |
Hints
- Do NOT use this filter. Use "Count" property output instead.
Examples
 |
 |
inArray = {6,7,3,4,10}
|
outSize = 5
|