min_max.hpp 997 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2005-2013. Distributed under the Boost
  4. // Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See http://www.boost.org/libs/container for documentation.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef BOOST_CONTAINER_DETAIL_MIN_MAX_HPP
  11. #define BOOST_CONTAINER_DETAIL_MIN_MAX_HPP
  12. #ifndef BOOST_CONFIG_HPP
  13. # include <boost/config.hpp>
  14. #endif
  15. #if defined(BOOST_HAS_PRAGMA_ONCE)
  16. # pragma once
  17. #endif
  18. namespace boost {
  19. namespace container {
  20. namespace dtl {
  21. template<class T>
  22. const T &max_value(const T &a, const T &b)
  23. { return a > b ? a : b; }
  24. template<class T>
  25. const T &min_value(const T &a, const T &b)
  26. { return a < b ? a : b; }
  27. } //namespace dtl {
  28. } //namespace container {
  29. } //namespace boost {
  30. #endif //#ifndef BOOST_CONTAINER_DETAIL_MIN_MAX_HPP