ExtremumType

Description

Decides what kind of extremum is returned.

Values of this enumeration:

  • Maximum
  • Minimum
  • Any - Both, Minima and Maxima will be returned.

namespace ExtremumType
{
	enum Type
	{
		Maximum,
		Minimum,
		Any
	};
}