Searched defs:NothrowTypeImp (Results 1 – 1 of 1) sorted by relevance
77 struct NothrowTypeImp { struct82 NothrowTypeImp() = default; argument83 explicit NothrowTypeImp(int v) : value(v) {} in NothrowTypeImp() argument84 NothrowTypeImp(const NothrowTypeImp &o) noexcept(NT_Copy) : value(o.value) { in NothrowTypeImp() argument87 NothrowTypeImp(NothrowTypeImp &&o) noexcept(NT_Move) : value(o.value) { in NothrowTypeImp() function92 NothrowTypeImp &operator=(const NothrowTypeImp &) noexcept(NT_CopyAssign) { in operator =() argument96 NothrowTypeImp &operator=(NothrowTypeImp &&o) noexcept(NT_MoveAssign) { in operator =() argument107 int NothrowTypeImp<NT_Copy, NT_Move, NT_CopyAssign, NT_MoveAssign, NT_Swap, argument