Back to Aurora Vision Library website

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

TestDoubleInRange


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 double value is in the specified range.

Syntax

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

Parameters

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