Back to FabImage Library websiteYou are here:
Start »
Function Reference »
All Functions »
Array Basics »
FisFilter_GetArrayArrayElement_OrNil
FisFilter_GetArrayArrayElement_OrNil
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 |
Extracts a single element from an array at the specified index; returns NIL if the index is out of range.
Syntax
void fis::FisFilter_GetArrayArrayElement_OrNil
(
const ftl::Array<ftl::Array<Type>>& inArray,
int inRow,
int inColumn,
typename ftl::ToConditionalType<Type>::Type& outConditionalValue
)
Parameters
|
Name |
Type |
Range |
Default |
Description |
 |
inArray |
const Array<Array<Type>>& |
|
|
Input array |
 |
inRow |
int |
0 -  |
|
|
 |
inColumn |
int |
0 -  |
|
|
 |
outConditionalValue |
typename ToConditionalType<Type>::Type& |
|
|
Element from the array |
Errors
List of possible exceptions:
Error type |
Description |
DomainError |
Negative index in GetArrayArrayElement. |