File indexing completed on 2025-01-18 09:40:42
0001
0002
0003
0004
0005
0006 #ifndef BOOST_MATH_TUPLE_HPP_INCLUDED
0007 #define BOOST_MATH_TUPLE_HPP_INCLUDED
0008
0009 #include <boost/math/tools/cxx03_warn.hpp>
0010 #include <tuple>
0011
0012 namespace boost{ namespace math{
0013
0014 using ::std::tuple;
0015
0016
0017 using ::std::ignore;
0018 using ::std::make_tuple;
0019 using ::std::tie;
0020 using ::std::get;
0021
0022
0023 using ::std::tuple_size;
0024 using ::std::tuple_element;
0025
0026 }}
0027 #endif