Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:40:42

0001 //  (C) Copyright John Maddock 2010.
0002 //  Use, modification and distribution are subject to the
0003 //  Boost Software License, Version 1.0. (See accompanying file
0004 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
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 // [6.1.3.2] Tuple creation functions
0017 using ::std::ignore;
0018 using ::std::make_tuple;
0019 using ::std::tie;
0020 using ::std::get;
0021 
0022 // [6.1.3.3] Tuple helper classes
0023 using ::std::tuple_size;
0024 using ::std::tuple_element;
0025 
0026 }}
0027 #endif