Searched defs:CopyInsertable (Results 1 – 1 of 1) sorted by relevance
348 struct CopyInsertable { struct353 explicit CopyInsertable(int val) : data(val), copied_once(false), in CopyInsertable() function361 CopyInsertable() : data(0), copied_once(false), constructed_under_allocator(true) in CopyInsertable() argument366 CopyInsertable(CopyInsertable const& other) : data(other.data), in CopyInsertable() argument374 CopyInsertable(CopyInsertable& other) : data(other.data), copied_once(true), in CopyInsertable() argument381 CopyInsertable(CopyInsertable&& other) : CopyInsertable(other) {} in CopyInsertable() argument384 CopyInsertable(CopyInsertable const && other) : CopyInsertable(other) {} in CopyInsertable() function388 CopyInsertable(Args&&...) { in CopyInsertable() argument392 ~CopyInsertable() { in ~CopyInsertable() argument404 bool operator==(CopyInsertable<ID> const& L, CopyInsertable<ID> const& R) { argument