Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
operator<= is the operator to determine if the left-hand instance is less or equal the right-hand instance.
The following code uses operator<= to determine that one plus two is less or equal equal to three:
#include <iostream> |
operator<= is encapsulated by the functor std::less_equal.
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.