Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
std::valarray::min(3)	      C++ Standard Libary	 std::valarray::min(3)

NAME
       std::valarray::min - std::valarray::min

Synopsis
	  T min() const;

	  Computes the minimum value of	the elements.

	  If there are no elements, the	behavior is undefined.

	  The function can be used only	if operator< is	defined	for type T.

Parameters
	  (none)

Return value
	  The minimum of the elements.

Example
       // Run this code

	#include <valarray>
	#include <iostream>

	int main()
	{
	    std::valarray<double> a{1, 2, 3, 4,	5, 6, 7, 8};
	    std::cout << "Minimum value	: " << a.min() << "\n";
	}

Output:
	Minimum	value :	1

See also
	  max returns the largest element
	      (public member function)

http://cppreference.com		  2022.07.31		 std::valarray::min(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::valarray::min&sektion=3&manpath=FreeBSD+Ports+15.0>

home | help