Back to FabImage Library website
You are here: Start » Function Reference » All Functions » Array Basics » FisFilter_TestArrayEmpty
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 |
Tests whether the size of an array equals zero.
Syntax
void fis::FisFilter_TestArrayEmpty ( const ftl::Array<Type>& inArray, bool& outIsEmpty )
Parameters
Examples
![]() |
![]() |
inArray = {1,5} |
outIsEmpty = False |
![]() |
![]() |
inArray = {} |
outIsEmpty = True |