3rdParty/boost/1.78.0/libs/preprocessor/doc/ref/min.html
The BOOST_PP_MIN macro expands to the lesser of its two arguments.
BOOST_PP_MIN (x, y)
x The first operand. Valid values range from 0 to BOOST_PP_LIMIT_MAG. y The second operand. Valid values range from 0 to BOOST_PP_LIMIT_MAG.
This macro returns the lesser of its two arguments or the value of both arguments if they are equal.
Previously, this macro could not be used inside BOOST_PP_WHILE. There is no longer any such restriction. It is more efficient, however, to use BOOST_PP_MIN_D in such a situation.
Header: <boost/preprocessor/selection/min.hpp>
#include <[boost/preprocessor/selection/min.hpp](../headers/selection/min.html)>[BOOST\_PP\_MIN](min.html)(5, 7) // expands to 5[BOOST\_PP\_MIN](min.html)(3, 3) // expands to 3
Copyright Housemarque Oy 2002 Copyright Paul Mensonides 2002
Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at www.boost.org/LICENSE_1_0.txt)