Back to Aurora Vision Library website

You are here: Start » Function Reference » All Functions » Real » TestRealInRange

TestRealInRange


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

Checks whether a real value is in the specified range.

Syntax

void avl::TestRealInRange
(
	float inValue,
	atl::Optional<float> inMinimum,
	atl::Optional<float> inMaximum,
	bool& outIsInRange
)

Parameters

Name Type Default Description
Input value inValue float Input Real value
Input value inMinimum Optional<float> NIL Optional input lower Real value of range
Input value inMaximum Optional<float> NIL Optional input higher Real value of range
Output value outIsInRange bool& Flag indicating whether input Real value is within range