1 | /*
|
---|
2 | * Copyright (c) 2018 Jaroslav Jindrak
|
---|
3 | * All rights reserved.
|
---|
4 | *
|
---|
5 | * Redistribution and use in source and binary forms, with or without
|
---|
6 | * modification, are permitted provided that the following conditions
|
---|
7 | * are met:
|
---|
8 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | #ifndef LIBCPP_INTERNAL_TUPLE_TUPLE_OPS
|
---|
30 | #define LIBCPP_INTERNAL_TUPLE_TUPLE_OPS
|
---|
31 |
|
---|
32 | #include <utility>
|
---|
33 |
|
---|
34 | namespace std
|
---|
35 | { // forward declarations
|
---|
36 | template<class... Ts>
|
---|
37 | struct tuple;
|
---|
38 |
|
---|
39 | template<size_t I, class T>
|
---|
40 | struct tuple_element;
|
---|
41 |
|
---|
42 | template<size_t I, class... Ts>
|
---|
43 | constexpr typename tuple_element<I, tuple<Ts...>>::type& get(tuple<Ts...>& tpl) noexcept;
|
---|
44 | }
|
---|
45 |
|
---|
46 | namespace std::aux
|
---|
47 | {
|
---|
48 | template<size_t I, size_t N>
|
---|
49 | struct tuple_ops
|
---|
50 | {
|
---|
51 | template<class T, class U>
|
---|
52 | static void assign_copy(T& lhs, const U& rhs)
|
---|
53 | {
|
---|
54 | get<I>(lhs) = get<I>(rhs);
|
---|
55 |
|
---|
56 | tuple_ops<I + 1, N>::assign_copy(lhs, rhs);
|
---|
57 | }
|
---|
58 |
|
---|
59 | template<class T, class U>
|
---|
60 | static void assign_move(T& lhs, U&& rhs)
|
---|
61 | {
|
---|
62 | get<I>(lhs) = move(get<I>(rhs));
|
---|
63 |
|
---|
64 | tuple_ops<I + 1, N>::assign_move(lhs, move(rhs));
|
---|
65 | }
|
---|
66 |
|
---|
67 | template<class T, class U>
|
---|
68 | static void swap(T& lhs, U& rhs)
|
---|
69 | {
|
---|
70 | std::swap(get<I>(lhs), get<I>(rhs));
|
---|
71 |
|
---|
72 | tuple_ops<I + 1, N>::swap(lhs, rhs);
|
---|
73 | }
|
---|
74 |
|
---|
75 | template<class T, class U>
|
---|
76 | static bool eq(const T& lhs, const U& rhs)
|
---|
77 | {
|
---|
78 | return (get<I>(lhs) == get<I>(rhs)) && tuple_ops<I + 1, N>::eq(lhs, rhs);
|
---|
79 | }
|
---|
80 |
|
---|
81 | template<class T, class U>
|
---|
82 | static bool lt(const T& lhs, const U& rhs)
|
---|
83 | {
|
---|
84 | return (get<I>(lhs) < get<I>(rhs)) ||
|
---|
85 | (!(get<I>(rhs) < get<I>(lhs)) && tuple_ops<I + 1, N>::lt(lhs, rhs));
|
---|
86 | }
|
---|
87 | };
|
---|
88 |
|
---|
89 | template<size_t N>
|
---|
90 | struct tuple_ops<N, N>
|
---|
91 | {
|
---|
92 | template<class T, class U>
|
---|
93 | static void assign_copy(T& lhs, const U& rhs)
|
---|
94 | {
|
---|
95 | get<N>(lhs) = get<N>(rhs);
|
---|
96 | }
|
---|
97 |
|
---|
98 | template<class T, class U>
|
---|
99 | static void assign_move(T& lhs, U&& rhs)
|
---|
100 | {
|
---|
101 | get<N>(lhs) = move(get<N>(rhs));
|
---|
102 | }
|
---|
103 |
|
---|
104 | template<class T, class U>
|
---|
105 | static void swap(T& lhs, U& rhs)
|
---|
106 | {
|
---|
107 | std::swap(get<N>(lhs), get<N>(rhs));
|
---|
108 | }
|
---|
109 |
|
---|
110 | template<class T, class U>
|
---|
111 | static bool eq(const T& lhs, const U& rhs)
|
---|
112 | {
|
---|
113 | return get<N>(lhs) == get<N>(rhs);
|
---|
114 | }
|
---|
115 |
|
---|
116 | template<class T, class U>
|
---|
117 | static bool lt(const T& lhs, const U& rhs)
|
---|
118 | {
|
---|
119 | return get<N>(lhs) < get<N>(rhs);
|
---|
120 | }
|
---|
121 | };
|
---|
122 | }
|
---|
123 |
|
---|
124 | #endif
|
---|