| LEFT | RIGHT |
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 template<typename Key, | 46 template<typename Key, |
| 47 class = typename std::enable_if<std::is_base_of<String, Key>::value>::type> | 47 class = typename std::enable_if<std::is_base_of<String, Key>::value>::type> |
| 48 struct StringSetEntry | 48 struct StringSetEntry |
| 49 { | 49 { |
| 50 typedef Key key_type; | 50 typedef Key key_type; |
| 51 typedef const String& key_type_cref; | 51 typedef const String& key_type_cref; |
| 52 typedef size_t size_type; | 52 typedef size_t size_type; |
| 53 | 53 |
| 54 key_type first; | 54 key_type first; |
| 55 | 55 |
| 56 StringSetEntry& operator=(const StringSetEntry&) = default; | |
| 57 StringSetEntry& operator=(StringSetEntry&&) = default; | |
| 58 | |
| 59 StringSetEntry(const StringSetEntry&) = default; | |
| 60 StringSetEntry(key_type_cref key = key_type()) | 56 StringSetEntry(key_type_cref key = key_type()) |
| 61 { | 57 { |
| 62 if (!key.is_invalid()) | 58 if (!key.is_invalid()) |
| 63 first.reset(key); | 59 first.reset(key); |
| 64 } | 60 } |
| 65 | 61 |
| 66 bool equals(key_type_cref other) const | 62 bool equals(key_type_cref other) const |
| 67 { | 63 { |
| 68 return first.equals(other); | 64 return first.equals(other); |
| 69 } | 65 } |
| (...skipping 20 matching lines...) Expand all Loading... |
| 90 }; | 86 }; |
| 91 | 87 |
| 92 template<typename Key, typename Value> | 88 template<typename Key, typename Value> |
| 93 struct StringMapEntry : StringSetEntry<Key> | 89 struct StringMapEntry : StringSetEntry<Key> |
| 94 { | 90 { |
| 95 typedef StringSetEntry<Key> super; | 91 typedef StringSetEntry<Key> super; |
| 96 typedef Value value_type; | 92 typedef Value value_type; |
| 97 | 93 |
| 98 value_type second; | 94 value_type second; |
| 99 | 95 |
| 100 StringMapEntry& operator=(const StringMapEntry&) = default; | |
| 101 StringMapEntry& operator=(StringMapEntry&&) = default; | |
| 102 | |
| 103 StringMapEntry(typename super::key_type_cref key = Key(), | 96 StringMapEntry(typename super::key_type_cref key = Key(), |
| 104 value_type value = value_type()) | 97 value_type value = value_type()) |
| 105 : super(key), second(std::move(value)) | 98 : super(key), second(std::move(value)) |
| 106 { | 99 { |
| 107 } | 100 } |
| 108 | 101 |
| 109 void erase() | 102 void erase() |
| 110 { | 103 { |
| 111 super::erase(); | 104 super::erase(); |
| 112 second = value_type(); | 105 second = value_type(); |
| 113 } | 106 } |
| 114 }; | 107 }; |
| 115 } | 108 } |
| 116 | 109 |
| 117 using StringSet = Set<StringMap_internal::StringSetEntry<DependentString>>; | 110 using StringSet = Set<StringMap_internal::StringSetEntry<DependentString>>; |
| 118 | 111 |
| 119 template<typename Value> | 112 template<typename Value> |
| 120 using StringMap = Map<StringMap_internal::StringMapEntry<DependentString, Value>
>; | 113 using StringMap = Map<StringMap_internal::StringMapEntry<DependentString, Value>
>; |
| 121 template<typename Value> | 114 template<typename Value> |
| 122 using OwnedStringMap = Map<StringMap_internal::StringMapEntry<OwnedString, Value
>>; | 115 using OwnedStringMap = Map<StringMap_internal::StringMapEntry<OwnedString, Value
>>; |
| LEFT | RIGHT |