Blame view

3rdparty/boost_1_81_0/boost/math/tools/tuple.hpp 641 Bytes
63e88f80   Hu Chunming   提交三方库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  //  (C) Copyright John Maddock 2010.
  //  Use, modification and distribution are subject to the
  //  Boost Software License, Version 1.0. (See accompanying file
  //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  
  #ifndef BOOST_MATH_TUPLE_HPP_INCLUDED
  #define BOOST_MATH_TUPLE_HPP_INCLUDED
  
  #include <boost/math/tools/cxx03_warn.hpp>
  #include <tuple>
  
  namespace boost{ namespace math{
  
  using ::std::tuple;
  
  // [6.1.3.2] Tuple creation functions
  using ::std::ignore;
  using ::std::make_tuple;
  using ::std::tie;
  using ::std::get;
  
  // [6.1.3.3] Tuple helper classes
  using ::std::tuple_size;
  using ::std::tuple_element;
  
  }}
  #endif