summaryrefslogtreecommitdiff
path: root/boost/poly_collection/detail/functional.hpp
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2017-09-13 11:24:46 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2017-09-13 11:25:39 +0900
commit4fadd968fa12130524c8380f33fcfe25d4de79e5 (patch)
treefd26a490cd15388d42fc6652b3c5c13012e7f93e /boost/poly_collection/detail/functional.hpp
parentb5c87084afaef42b2d058f68091be31988a6a874 (diff)
downloadboost-upstream/1.65.0.tar.gz
boost-upstream/1.65.0.tar.bz2
boost-upstream/1.65.0.zip
Imported Upstream version 1.65.0upstream/1.65.0
Change-Id: Icf8400b375482cb11bcf77440a6934ba360d6ba4 Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'boost/poly_collection/detail/functional.hpp')
-rw-r--r--boost/poly_collection/detail/functional.hpp196
1 files changed, 196 insertions, 0 deletions
diff --git a/boost/poly_collection/detail/functional.hpp b/boost/poly_collection/detail/functional.hpp
new file mode 100644
index 0000000000..26e1bcb394
--- /dev/null
+++ b/boost/poly_collection/detail/functional.hpp
@@ -0,0 +1,196 @@
+/* Copyright 2016-2017 Joaquin M Lopez Munoz.
+ * 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)
+ *
+ * See http://www.boost.org/libs/poly_collection for library home page.
+ */
+
+#ifndef BOOST_POLY_COLLECTION_DETAIL_FUNCTIONAL_HPP
+#define BOOST_POLY_COLLECTION_DETAIL_FUNCTIONAL_HPP
+
+#if defined(_MSC_VER)
+#pragma once
+#endif
+
+#include <boost/config.hpp>
+#include <boost/detail/workaround.hpp>
+#include <boost/poly_collection/detail/integer_sequence.hpp>
+#include <tuple>
+#include <utility>
+
+/* Assorted functional utilities. Much of this would be almost trivial with
+ * C++14 generic lambdas.
+ */
+
+#if BOOST_WORKAROUND(BOOST_MSVC,>=1910)
+/* https://lists.boost.org/Archives/boost/2017/06/235687.php */
+
+#define BOOST_POLY_COLLECTION_DEFINE_OVERLOAD_SET(name,f) \
+struct name \
+{ \
+ template<typename... Args> \
+ auto operator()(Args&&... args)const \
+ { \
+ return f(std::forward<Args>(args)...); \
+ } \
+};
+#else
+#define BOOST_POLY_COLLECTION_DEFINE_OVERLOAD_SET(name,f) \
+struct name \
+{ \
+ template<typename... Args> \
+ auto operator()(Args&&... args)const-> \
+ decltype(f(std::forward<Args>(args)...)) \
+ { \
+ return f(std::forward<Args>(args)...); \
+ } \
+};
+#endif
+
+namespace boost{
+
+namespace poly_collection{
+
+namespace detail{
+
+template<typename F,typename Tuple>
+struct tail_closure_class
+{
+ template<typename... Args,std::size_t... I>
+ auto call(index_sequence<I...>,Args&&... args)
+ ->decltype(std::declval<F>()(
+ std::forward<Args>(args)...,
+ std::get<I>(std::declval<Tuple>())...))
+ {
+ return f(std::forward<Args>(args)...,std::get<I>(t)...);
+ }
+
+ template<typename... Args>
+ auto operator()(Args&&... args)
+ ->decltype(this->call(
+ make_index_sequence<std::tuple_size<Tuple>::value>{},
+ std::forward<Args>(args)...))
+ {
+ return call(
+ make_index_sequence<std::tuple_size<Tuple>::value>{},
+ std::forward<Args>(args)...);
+ }
+
+ F f;
+ Tuple t;
+};
+
+template<typename F,typename... Args>
+auto tail_closure(const F& f,Args&&... args)
+ ->tail_closure_class<F,std::tuple<Args&&...>>
+{
+ return {f,std::forward_as_tuple(std::forward<Args>(args)...)};
+}
+
+template<typename F,typename Tuple>
+struct head_closure_class
+{
+ template<typename... Args,std::size_t... I>
+ auto call(index_sequence<I...>,Args&&... args)
+ ->decltype(std::declval<F>()(
+ std::get<I>(std::declval<Tuple>())...,std::forward<Args>(args)...))
+ {
+ return f(std::get<I>(t)...,std::forward<Args>(args)...);
+ }
+
+ template<typename... Args>
+ auto operator()(Args&&... args)
+ ->decltype(this->call(
+ make_index_sequence<std::tuple_size<Tuple>::value>{},
+ std::forward<Args>(args)...))
+ {
+ return call(
+ make_index_sequence<std::tuple_size<Tuple>::value>{},
+ std::forward<Args>(args)...);
+ }
+
+ F f;
+ Tuple t;
+};
+
+template<typename F,typename... Args>
+auto head_closure(const F& f,Args&&... args)
+ ->head_closure_class<F,std::tuple<Args&&...>>
+{
+ return {f,std::forward_as_tuple(std::forward<Args>(args)...)};
+}
+
+template<typename ReturnType,typename F>
+struct cast_return_class
+{
+ template<typename... Args>
+ ReturnType operator()(Args&&... args)const
+ {
+ return static_cast<ReturnType>(f(std::forward<Args>(args)...));
+ }
+
+ F f;
+};
+
+template<typename ReturnType,typename F>
+cast_return_class<ReturnType,F> cast_return(const F& f)
+{
+ return {f};
+}
+
+template<typename F>
+struct deref_to_class
+{
+ template<typename... Args>
+ auto operator()(Args&&... args)->decltype(std::declval<F>()(*args...))
+ {
+ return f(*args...);
+ }
+
+ F f;
+};
+
+template<typename F>
+deref_to_class<F> deref_to(const F& f)
+{
+ return {f};
+}
+
+template<typename F>
+struct deref_1st_to_class
+{
+ template<typename Arg,typename... Args>
+ auto operator()(Arg&& arg,Args&&... args)
+ ->decltype(std::declval<F>()(*arg,std::forward<Args>(args)...))
+ {
+ return f(*arg,std::forward<Args>(args)...);
+ }
+
+ F f;
+};
+
+template<typename F>
+deref_1st_to_class<F> deref_1st_to(const F& f)
+{
+ return {f};
+}
+
+struct transparent_equal_to
+{
+ template<typename T,typename U>
+ auto operator()(T&& x,U&& y)const
+ noexcept(noexcept(std::forward<T>(x)==std::forward<U>(y)))
+ ->decltype(std::forward<T>(x)==std::forward<U>(y))
+ {
+ return std::forward<T>(x)==std::forward<U>(y);
+ }
+};
+
+} /* namespace poly_collection::detail */
+
+} /* namespace poly_collection */
+
+} /* namespace boost */
+
+#endif