6a450d4056
numbers): r242679 Implement the plugin-based version of std::search. There are no searchers yet; those are coming soon. r242682 Implement the default searcher for std::experimental::search. r243728 Add <experimental/any> v2. r245330 implement more of N4258 - Cleaning up noexcept in the standard library. Specifically add new noexcept stuff to vector and string's move-assignment operations r245334 Fix PR22606 - Leak pthread_key with static storage duration to ensure all of thread-local destructors are called. r245335 Fix PR23589: std::function doesn't recognize null pointer to varargs function. r247036 Implementation of Boyer-Moore and Boyer-Moore-Horspool searchers for the LFTS. r249325 Implement LWG#2063, and update the issues links to point to the github generated pages r249738 Split <ctype.h> out of <cctype>. r249739 Split <errno.h> out of <cerrno>. r249740 Split <float.h> out of <cfloat>. r249741 Split <inttypes.h> out of <cinttypes>. r249742 Split <math.h> out of <cmath>. r249743 Split <setjmp.h> out of <csetjmp>. r249761 Split <stddef.h> out of <cstddef>. r249798 Split <stdio.h> out of <cstdio>. r249800 Split <stdlib.h> out of <cstdlib>. r249889 Split <wchar.h> out of <cwchar>. r249890 Split <wctype.h> out of <cwctype>. r249929 Split <string.h> out of <cstring>. r250254 ABI versioning macros for libc++. r251246 Fix LWG#2244: basic_istream::seekg r251247 Fix LWG#2127: Move-construction with raw_storage_iterator. r251253 Fix LWG#2476: scoped_allocator_adaptor is not assignable r251257 Fix LWG#2489: mem_fn() should be noexcept r251618 Implement P0004R1 'Remove Deprecated iostreams aliases' r251766 Implement the first part of P0006R0: Adopt Type Traits Variable Templates for C++17. r252195 Implement P0092R1 for C++1z r252350 Allow deque to handle incomplete types. r252406 More of P0006R0: type traits variable aliases for C++17. r252407 Implement LWG#2353: std::next is over-constrained r252905 Implement P0074: Making owner_less more flexible r253215 Implement P0013R1: Logical Operator Type Traits. r253274 Implement P0007: Constant View: A proposal for a std::as_const helper function template. r254119 Add static_assert to set/multiset/map/multimap/forward_list/deque that the allocator's value_type match the container's value_type. r254283 Implement more of P0006; Type Traits Variable Templates. r255941 LWG2485: get() should be overloaded for const tuple&&. r256325 Fix LWG Issue #2367 - Fixing std::tuple and std::pair's default constructors. r256652 Fix for ALL undefined behavior in <list>. r256859 First half of LWG#2354: 'Unnecessary copying when inserting into maps with braced-init syntax' Exp-run: antoine Relnotes: yes
225 lines
6.4 KiB
C++
225 lines
6.4 KiB
C++
// -*- C++ -*-
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef _LIBCPP_FUNCTIONAL_BASE_03
|
|
#define _LIBCPP_FUNCTIONAL_BASE_03
|
|
|
|
// manual variadic expansion for <functional>
|
|
|
|
// __invoke
|
|
|
|
template <class _Ret, class _T1, bool _IsFunc, bool _IsBase>
|
|
struct __enable_invoke_imp;
|
|
|
|
template <class _Ret, class _T1>
|
|
struct __enable_invoke_imp<_Ret, _T1, true, true> {
|
|
typedef _Ret _Bullet1;
|
|
typedef _Bullet1 type;
|
|
};
|
|
|
|
template <class _Ret, class _T1>
|
|
struct __enable_invoke_imp<_Ret, _T1, true, false> {
|
|
typedef _Ret _Bullet2;
|
|
typedef _Bullet2 type;
|
|
};
|
|
|
|
template <class _Ret, class _T1>
|
|
struct __enable_invoke_imp<_Ret, _T1, false, true> {
|
|
typedef typename add_lvalue_reference<
|
|
typename __apply_cv<_T1, _Ret>::type
|
|
>::type _Bullet3;
|
|
typedef _Bullet3 type;
|
|
};
|
|
|
|
template <class _Ret, class _T1>
|
|
struct __enable_invoke_imp<_Ret, _T1, false, false> {
|
|
typedef typename add_lvalue_reference<
|
|
typename __apply_cv<decltype(*_VSTD::declval<_T1>()), _Ret>::type
|
|
>::type _Bullet4;
|
|
typedef _Bullet4 type;
|
|
};
|
|
|
|
template <class _Ret, class _T1>
|
|
struct __enable_invoke_imp<_Ret, _T1*, false, false> {
|
|
typedef typename add_lvalue_reference<
|
|
typename __apply_cv<_T1, _Ret>::type
|
|
>::type _Bullet4;
|
|
typedef _Bullet4 type;
|
|
};
|
|
|
|
template <class _Fn, class _T1,
|
|
class _Traits = __member_pointer_traits<_Fn>,
|
|
class _Ret = typename _Traits::_ReturnType,
|
|
class _Class = typename _Traits::_ClassType>
|
|
struct __enable_invoke : __enable_invoke_imp<
|
|
_Ret, _T1,
|
|
is_member_function_pointer<_Fn>::value,
|
|
is_base_of<_Class, typename remove_reference<_T1>::type>::value>
|
|
{
|
|
};
|
|
|
|
__nat __invoke(__any, ...);
|
|
|
|
// first bullet
|
|
|
|
template <class _Fn, class _T1>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
typename __enable_invoke<_Fn, _T1>::_Bullet1
|
|
__invoke(_Fn __f, _T1& __t1) {
|
|
return (__t1.*__f)();
|
|
}
|
|
|
|
template <class _Fn, class _T1, class _A0>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
typename __enable_invoke<_Fn, _T1>::_Bullet1
|
|
__invoke(_Fn __f, _T1& __t1, _A0& __a0) {
|
|
return (__t1.*__f)(__a0);
|
|
}
|
|
|
|
template <class _Fn, class _T1, class _A0, class _A1>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
typename __enable_invoke<_Fn, _T1>::_Bullet1
|
|
__invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1) {
|
|
return (__t1.*__f)(__a0, __a1);
|
|
}
|
|
|
|
template <class _Fn, class _T1, class _A0, class _A1, class _A2>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
typename __enable_invoke<_Fn, _T1>::_Bullet1
|
|
__invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1, _A2& __a2) {
|
|
return (__t1.*__f)(__a0, __a1, __a2);
|
|
}
|
|
|
|
template <class _Fn, class _T1>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
typename __enable_invoke<_Fn, _T1>::_Bullet2
|
|
__invoke(_Fn __f, _T1& __t1) {
|
|
return ((*__t1).*__f)();
|
|
}
|
|
|
|
template <class _Fn, class _T1, class _A0>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
typename __enable_invoke<_Fn, _T1>::_Bullet2
|
|
__invoke(_Fn __f, _T1& __t1, _A0& __a0) {
|
|
return ((*__t1).*__f)(__a0);
|
|
}
|
|
|
|
template <class _Fn, class _T1, class _A0, class _A1>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
typename __enable_invoke<_Fn, _T1>::_Bullet2
|
|
__invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1) {
|
|
return ((*__t1).*__f)(__a0, __a1);
|
|
}
|
|
|
|
template <class _Fn, class _T1, class _A0, class _A1, class _A2>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
typename __enable_invoke<_Fn, _T1>::_Bullet2
|
|
__invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1, _A2& __a2) {
|
|
return ((*__t1).*__f)(__a0, __a1, __a2);
|
|
}
|
|
|
|
template <class _Fn, class _T1>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
typename __enable_invoke<_Fn, _T1>::_Bullet3
|
|
__invoke(_Fn __f, _T1& __t1) {
|
|
return __t1.*__f;
|
|
}
|
|
|
|
template <class _Fn, class _T1>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
typename __enable_invoke<_Fn, _T1>::_Bullet4
|
|
__invoke(_Fn __f, _T1& __t1) {
|
|
return (*__t1).*__f;
|
|
}
|
|
|
|
// fifth bullet
|
|
|
|
template <class _Fp>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
decltype(_VSTD::declval<_Fp&>()())
|
|
__invoke(_Fp& __f)
|
|
{
|
|
return __f();
|
|
}
|
|
|
|
template <class _Fp, class _A0>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
decltype(_VSTD::declval<_Fp&>()(_VSTD::declval<_A0&>()))
|
|
__invoke(_Fp& __f, _A0& __a0)
|
|
{
|
|
return __f(__a0);
|
|
}
|
|
|
|
template <class _Fp, class _A0, class _A1>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
decltype(_VSTD::declval<_Fp&>()(_VSTD::declval<_A0&>(), _VSTD::declval<_A1&>()))
|
|
__invoke(_Fp& __f, _A0& __a0, _A1& __a1)
|
|
{
|
|
return __f(__a0, __a1);
|
|
}
|
|
|
|
template <class _Fp, class _A0, class _A1, class _A2>
|
|
inline _LIBCPP_INLINE_VISIBILITY
|
|
decltype(_VSTD::declval<_Fp&>()(_VSTD::declval<_A0&>(), _VSTD::declval<_A1&>(), _VSTD::declval<_A2&>()))
|
|
__invoke(_Fp& __f, _A0& __a0, _A1& __a1, _A2& __a2)
|
|
{
|
|
return __f(__a0, __a1, __a2);
|
|
}
|
|
|
|
template <class _Fp, bool = __has_result_type<__weak_result_type<_Fp> >::value>
|
|
struct __invoke_return
|
|
{
|
|
typedef typename __weak_result_type<_Fp>::result_type type;
|
|
};
|
|
|
|
template <class _Fp>
|
|
struct __invoke_return<_Fp, false>
|
|
{
|
|
typedef decltype(__invoke(_VSTD::declval<_Fp&>())) type;
|
|
};
|
|
|
|
template <class _Tp, class _A0>
|
|
struct __invoke_return0
|
|
{
|
|
typedef decltype(__invoke(_VSTD::declval<_Tp&>(), _VSTD::declval<_A0&>())) type;
|
|
};
|
|
|
|
template <class _Rp, class _Tp, class _A0>
|
|
struct __invoke_return0<_Rp _Tp::*, _A0>
|
|
{
|
|
typedef typename __enable_invoke<_Rp _Tp::*, _A0>::type type;
|
|
};
|
|
|
|
template <class _Tp, class _A0, class _A1>
|
|
struct __invoke_return1
|
|
{
|
|
typedef decltype(__invoke(_VSTD::declval<_Tp&>(), _VSTD::declval<_A0&>(),
|
|
_VSTD::declval<_A1&>())) type;
|
|
};
|
|
|
|
template <class _Rp, class _Class, class _A0, class _A1>
|
|
struct __invoke_return1<_Rp _Class::*, _A0, _A1> {
|
|
typedef typename __enable_invoke<_Rp _Class::*, _A0>::type type;
|
|
};
|
|
|
|
template <class _Tp, class _A0, class _A1, class _A2>
|
|
struct __invoke_return2
|
|
{
|
|
typedef decltype(__invoke(_VSTD::declval<_Tp&>(), _VSTD::declval<_A0&>(),
|
|
_VSTD::declval<_A1&>(),
|
|
_VSTD::declval<_A2&>())) type;
|
|
};
|
|
|
|
template <class _Ret, class _Class, class _A0, class _A1, class _A2>
|
|
struct __invoke_return2<_Ret _Class::*, _A0, _A1, _A2> {
|
|
typedef typename __enable_invoke<_Ret _Class::*, _A0>::type type;
|
|
};
|
|
#endif // _LIBCPP_FUNCTIONAL_BASE_03
|