MCPcopy Create free account
hub / github.com/cameron314/concurrentqueue / swap

Method swap

concurrentqueue.h:3335–3341  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3333 }
3334
3335 inline void swap(ImplicitProducerKVP& other) MOODYCAMEL_NOEXCEPT
3336 {
3337 if (this != &other) {
3338 details::swap_relaxed(key, other.key);
3339 std::swap(value, other.value);
3340 }
3341 }
3342 };
3343
3344 template<typename XT, typename XTraits>

Callers

nothing calls this directly

Calls 2

swap_relaxedFunction · 0.85
swapFunction · 0.70

Tested by

no test coverage detected