Blame view

3rdparty/boost_1_81_0/boost/hof/decay.hpp 1.75 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  /*=============================================================================
      Copyright (c) 2015 Paul Fultz II
      decay.h
      Distributed under 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_HOF_GUARD_DECAY_H
  #define BOOST_HOF_GUARD_DECAY_H
  
  /// decay
  /// =====
  /// 
  /// Description
  /// -----------
  /// 
  /// The `decay` function is a unary function object that returns whats given to it after decaying its type.
  /// 
  /// Synopsis
  /// --------
  /// 
  ///     struct
  ///     {
  ///         template<class T>
  ///         constexpr typename decay<T>::type operator()(T&& x) const
  ///         {
  ///             return boost::hof::forward<T>(x);
  ///         }
  ///     } decay;
  /// 
  /// References
  /// ----------
  /// 
  /// * [n3255](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3255.html) - Proposal for `decay_copy`
  /// 
  
  #include <boost/hof/detail/delegate.hpp>
  #include <boost/hof/detail/unwrap.hpp>
  #include <boost/hof/detail/static_const_var.hpp>
  #include <boost/hof/detail/forward.hpp>
  
  namespace boost { namespace hof { namespace detail {
  
  template<class T>
  struct decay_mf
  : unwrap_reference<typename std::decay<T>::type>
  {};
  
  struct decay_f
  {
      template<
          class T, 
          class Result=typename unwrap_reference<typename std::decay<T>::type>::type, 
          class=typename std::enable_if<(BOOST_HOF_IS_CONSTRUCTIBLE(Result, T))>::type
      >
      constexpr Result operator()(T&& x) const BOOST_HOF_NOEXCEPT_CONSTRUCTIBLE(Result, T&&)
      {
          return BOOST_HOF_FORWARD(T)(x);
      }
  };
  
  }
  
  BOOST_HOF_DECLARE_STATIC_VAR(decay, detail::decay_f);
  
  }} // namespace boost::hof
  
  #endif