FastLED 3.9.15
Loading...
Searching...
No Matches

◆ swap()

template<typename Key, typename T, typename Hash = Hash<Key>, typename KeyEqual = EqualTo<Key>, int INLINED_COUNT = FASTLED_HASHMAP_INLINED_COUNT>
void fl::HashMap< Key, T, Hash, KeyEqual, INLINED_COUNT >::Entry::swap ( Entry & other)
inline

Definition at line 320 of file hash_map.h.

320 {
321 fl::swap(key, other.key);
322 fl::swap(value, other.value);
323 }
void swap(array< T, N > &lhs, array< T, N > &rhs) noexcept(noexcept(lhs.swap(rhs)))
Definition array.h:140
T value
Definition hash_map.h:319
Key key
Definition hash_map.h:318

References key, fl::swap(), and value.

+ Here is the call graph for this function: