Back to FabImage Library websiteYou are here:
Start »
Function Reference »
Array Composition »
RemoveMultipleArrayElements
RemoveMultipleArrayElements
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: | fil |
Removes the elements of the given index list from an array.
Syntax
void fil::RemoveMultipleArrayElements
(
ftl::Array<Type>& ioArray,
const ftl::Array<int>& inIndices,
bool inInverse
)
Parameters
|
Name |
Type |
Default |
Description |
|
ioArray |
Array<Type>& |
|
|
 |
inIndices |
const Array<int>& |
|
Indices within the array |
 |
inInverse |
bool |
False |
Reversed order in the array |
Errors
List of possible exceptions:
Error type |
Description |
DomainError |
Array indices duplicated in RemoveMultipleArrayElements. |
DomainError |
Array indices out of range in RemoveMultipleArrayElements. |