arg.cpp 567 B

123456789101112131415
  1. // Copyright Louis Dionne 2013-2017
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
  4. #include <boost/hana/functional/arg.hpp>
  5. namespace hana = boost::hana;
  6. // hana::arg<0>(1, '2', 3.3); // static assertion (regardless of the number of arguments)
  7. static_assert(hana::arg<1>(1, '2', 3.3) == 1, "");
  8. static_assert(hana::arg<2>(1, '2', 3.3) == '2', "");
  9. static_assert(hana::arg<3>(1, '2', 3.3) == 3.3, "");
  10. // hana::arg<4>(1, '2', 3.3); // static assertion
  11. int main() { }