Back to FabImage Library website

You are here: Start » Function Reference » All Functions » Integer » MinimumInteger_OfLoop

MinimumInteger_OfLoop


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
Module: FoundationLite

Returns the smallest of numbers appearing in consecutive iterations.

Syntax

void fil::MinimumInteger_OfLoop
(
	MinimumInteger_OfLoopState& ioState,
	int inValue,
	int& outMinimum,
	ftl::Optional<int&> outIterationIndex = ftl::NIL
)

Parameters

Name Type Default Description
Input will be modified
ioState MinimumInteger_OfLoopState& Object used to maintain state of the function.
Input value
inValue int
Output value
outMinimum int&
Output value
outIterationIndex Optional<int&> NIL

Optional Outputs

The computation of following outputs can be switched off by passing value ftl::NIL to these parameters: outIterationIndex.

Read more about Optional Outputs.

Description

Loop version of MinimumInteger.

See Also