Lines Matching defs:other
43 ConcurrentMap(const ConcurrentMap &other)
45 operator=(std::move(other));
48 ConcurrentMap &operator=(const ConcurrentMap &other) noexcept
50 if (this == &other) {
53 auto tmp = other.Clone();
59 ConcurrentMap(ConcurrentMap &&other) noexcept
61 operator=(std::move(other));
64 ConcurrentMap &operator=(ConcurrentMap &&other) noexcept
66 if (this == &other) {
69 auto tmp = other.Steal();