functional.hpp 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. /*!
  2. @file
  3. Defines the @ref group-functional module.
  4. @copyright Louis Dionne 2013-2017
  5. Distributed under the Boost Software License, Version 1.0.
  6. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
  7. */
  8. #ifndef BOOST_HANA_FUNCTIONAL_HPP
  9. #define BOOST_HANA_FUNCTIONAL_HPP
  10. #include <boost/hana/functional/always.hpp>
  11. #include <boost/hana/functional/apply.hpp>
  12. #include <boost/hana/functional/arg.hpp>
  13. #include <boost/hana/functional/capture.hpp>
  14. #include <boost/hana/functional/compose.hpp>
  15. #include <boost/hana/functional/curry.hpp>
  16. #include <boost/hana/functional/demux.hpp>
  17. #include <boost/hana/functional/fix.hpp>
  18. #include <boost/hana/functional/flip.hpp>
  19. #include <boost/hana/functional/id.hpp>
  20. #include <boost/hana/functional/infix.hpp>
  21. #include <boost/hana/functional/iterate.hpp>
  22. #include <boost/hana/functional/lockstep.hpp>
  23. #include <boost/hana/functional/on.hpp>
  24. #include <boost/hana/functional/overload.hpp>
  25. #include <boost/hana/functional/overload_linearly.hpp>
  26. #include <boost/hana/functional/partial.hpp>
  27. #include <boost/hana/functional/placeholder.hpp>
  28. #include <boost/hana/functional/reverse_partial.hpp>
  29. #endif // !BOOST_HANA_FUNCTIONAL_HPP