18 #include <type_traits>
20 #include <bsoncxx/config/prelude.hpp>
31 #if !defined(_MSC_VER)
33 template <
typename FunctionLike,
typename Signature>
34 using is_functor = std::is_convertible<FunctionLike, std::function<Signature>>;
40 template <
typename,
typename>
41 struct build_free_function;
43 template <
typename F,
typename R,
typename... Args>
44 struct build_free_function<F, R(Args...)> {
45 typedef R (*
type)(Args...);
48 template <
typename,
typename>
49 struct build_class_function;
51 template <
typename C,
typename R,
typename... Args>
52 struct build_class_function<C, R(Args...)> {
53 typedef R (C::*
type)(Args...);
57 struct strip_cv_from_class_function;
59 template <
typename C,
typename R,
typename... Args>
60 struct strip_cv_from_class_function<R (C::*)(Args...)> {
61 typedef R (C::*
type)(Args...);
64 template <
typename C,
typename R,
typename... Args>
65 struct strip_cv_from_class_function<R (C::*)(Args...) const> {
66 typedef R (C::*
type)(Args...);
69 template <
typename C,
typename R,
typename... Args>
70 struct strip_cv_from_class_function<R (C::*)(Args...) volatile> {
71 typedef R (C::*
type)(Args...);
74 template <
typename C,
typename S>
75 struct is_class_method_with_signature {
81 static typename std::enable_if<std::is_convertible<typename build_class_function<C, S>::type,
82 typename strip_cv_from_class_function<
83 decltype(&T::operator())>
::type>::value,
88 static no sfinae(...);
90 static bool constexpr value =
sizeof(sfinae<C>(
nullptr)) ==
sizeof(yes);
93 template <
typename F,
typename S>
94 struct is_function_with_signature
95 : std::is_convertible<F, typename build_free_function<F, S>::type> {};
97 template <
typename C,
typename S,
bool>
98 struct is_functor_impl : is_class_method_with_signature<C, S> {};
100 template <
typename F,
typename S>
101 struct is_functor_impl<F, S, false> : is_function_with_signature<F, S> {};
105 template <
typename C,
typename S>
106 struct is_functor : functor::is_functor_impl<C, S, std::is_class<C>::value> {};
114 #include <bsoncxx/config/postlude.hpp>
type
An enumeration of each BSON type.
Definition: types.hpp:48
The top-level namespace for bsoncxx library entities.
Definition: element-fwd.hpp:19