summaryrefslogtreecommitdiffstats
path: root/third_party/msgpack/include/msgpack/preprocessor/tuple/remove.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/msgpack/include/msgpack/preprocessor/tuple/remove.hpp')
-rw-r--r--third_party/msgpack/include/msgpack/preprocessor/tuple/remove.hpp64
1 files changed, 64 insertions, 0 deletions
diff --git a/third_party/msgpack/include/msgpack/preprocessor/tuple/remove.hpp b/third_party/msgpack/include/msgpack/preprocessor/tuple/remove.hpp
new file mode 100644
index 0000000000..5c3839e22a
--- /dev/null
+++ b/third_party/msgpack/include/msgpack/preprocessor/tuple/remove.hpp
@@ -0,0 +1,64 @@
+# /* **************************************************************************
+# * *
+# * (C) Copyright Edward Diener 2013.
+# * 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 for most recent version. */
+#
+# ifndef MSGPACK_PREPROCESSOR_TUPLE_REMOVE_HPP
+# define MSGPACK_PREPROCESSOR_TUPLE_REMOVE_HPP
+#
+# include <msgpack/preprocessor/config/config.hpp>
+#
+# if MSGPACK_PP_VARIADICS
+#
+# include <msgpack/preprocessor/array/remove.hpp>
+# include <msgpack/preprocessor/array/to_tuple.hpp>
+# include <msgpack/preprocessor/comparison/greater.hpp>
+# include <msgpack/preprocessor/control/iif.hpp>
+# include <msgpack/preprocessor/tuple/size.hpp>
+# include <msgpack/preprocessor/tuple/to_array.hpp>
+#
+# /* MSGPACK_PP_TUPLE_REMOVE */
+#
+# define MSGPACK_PP_TUPLE_REMOVE(tuple, i) \
+ MSGPACK_PP_IIF \
+ ( \
+ MSGPACK_PP_GREATER(MSGPACK_PP_TUPLE_SIZE(tuple),1), \
+ MSGPACK_PP_TUPLE_REMOVE_EXEC, \
+ MSGPACK_PP_TUPLE_REMOVE_RETURN \
+ ) \
+ (tuple, i) \
+/**/
+#
+# define MSGPACK_PP_TUPLE_REMOVE_EXEC(tuple, i) \
+ MSGPACK_PP_ARRAY_TO_TUPLE(MSGPACK_PP_ARRAY_REMOVE(MSGPACK_PP_TUPLE_TO_ARRAY(tuple), i)) \
+/**/
+#
+# define MSGPACK_PP_TUPLE_REMOVE_RETURN(tuple, i) tuple
+#
+# /* MSGPACK_PP_TUPLE_REMOVE_D */
+#
+# define MSGPACK_PP_TUPLE_REMOVE_D(d, tuple, i) \
+ MSGPACK_PP_IIF \
+ ( \
+ MSGPACK_PP_GREATER_D(d, MSGPACK_PP_TUPLE_SIZE(tuple), 1), \
+ MSGPACK_PP_TUPLE_REMOVE_D_EXEC, \
+ MSGPACK_PP_TUPLE_REMOVE_D_RETURN \
+ ) \
+ (d, tuple, i) \
+/**/
+#
+# define MSGPACK_PP_TUPLE_REMOVE_D_EXEC(d, tuple, i) \
+ MSGPACK_PP_ARRAY_TO_TUPLE(MSGPACK_PP_ARRAY_REMOVE_D(d, MSGPACK_PP_TUPLE_TO_ARRAY(tuple), i)) \
+/**/
+#
+# define MSGPACK_PP_TUPLE_REMOVE_D_RETURN(d, tuple, i) tuple
+#
+# endif // MSGPACK_PP_VARIADICS
+#
+# endif // MSGPACK_PREPROCESSOR_TUPLE_REMOVE_HPP