[3d6f7f3] | 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_TUPLE_OPS
|
---|
| 30 | #define LIBCPP_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(T&& lhs, U&& rhs)
|
---|
| 53 | {
|
---|
| 54 | get<I>(forward<T>(lhs)) = get<I>(forward<U>(rhs));
|
---|
| 55 |
|
---|
| 56 | tuple_ops<I + 1, N>::assign(forward<T>(lhs), forward<U>(rhs));
|
---|
| 57 | }
|
---|
| 58 |
|
---|
| 59 | template<class T, class U>
|
---|
| 60 | static void swap(T& lhs, U& rhs)
|
---|
| 61 | {
|
---|
| 62 | std::swap(get<I>(lhs), get<I>(rhs));
|
---|
| 63 |
|
---|
| 64 | tuple_ops<I + 1, N>::swap(lhs, rhs);
|
---|
| 65 | }
|
---|
| 66 |
|
---|
| 67 | template<class T, class U>
|
---|
| 68 | static bool eq(const T& lhs, const U& rhs)
|
---|
| 69 | {
|
---|
| 70 | return (get<I>(lhs) == get<I>(rhs)) && tuple_ops<I + 1, N>::eq(lhs, rhs);
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | template<class T, class U>
|
---|
| 74 | static bool lt(const T& lhs, const U& rhs)
|
---|
| 75 | {
|
---|
| 76 | return (get<I>(lhs) < get<I>(rhs)) ||
|
---|
| 77 | (!(get<I>(rhs) < get<I>(lhs)) && tuple_ops<I + 1, N>::lt(lhs, rhs));
|
---|
| 78 | }
|
---|
| 79 | };
|
---|
| 80 |
|
---|
| 81 | template<size_t N>
|
---|
| 82 | struct tuple_ops<N, N>
|
---|
| 83 | {
|
---|
| 84 | template<class T, class U>
|
---|
| 85 | static void assign(T&& lhs, U&& rhs)
|
---|
| 86 | {
|
---|
| 87 | get<N>(forward<T>(lhs)) = get<N>(forward<U>(rhs));
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | template<class T, class U>
|
---|
| 91 | static void swap(T& lhs, U& rhs)
|
---|
| 92 | {
|
---|
| 93 | std::swap(get<N>(lhs), get<N>(rhs));
|
---|
| 94 | }
|
---|
| 95 |
|
---|
| 96 | template<class T, class U>
|
---|
| 97 | static bool eq(const T& lhs, const U& rhs)
|
---|
| 98 | {
|
---|
| 99 | return get<N>(lhs) == get<N>(rhs);
|
---|
| 100 | }
|
---|
| 101 |
|
---|
| 102 | template<class T, class U>
|
---|
| 103 | static bool lt(const T& lhs, const U& rhs)
|
---|
| 104 | {
|
---|
| 105 | return get<N>(lhs) < get<N>(rhs);
|
---|
| 106 | }
|
---|
| 107 | };
|
---|
| 108 | }
|
---|
| 109 |
|
---|
| 110 | #endif
|
---|