I was surprised to discover that is_swappable<T> and is_nothrow_swappable<T> are not among the new C++11 type_traits metafunctions. They are very useful for propagating noexcept for templates and for determining whether it is possible to implement a non-throwing swap for a template.
libc++ rolls its own internal versions: see __is_swappable and __is_nothrow_swappable in its version of type_traits, and it makes extensive internal use of them but does not make them available outside the library.
I ended up cobbling together my own version of these for a personal project, which seem to work but I'm sure its broken somehow.
I am curious about the absence of these two as they seem quite important. Was this feature considered during the C++11 standardization process, or was it just an oversight that it was not included? If it was considered, what lead to it not being incorporated into the final standard (lack of time, implementation issues, etc.)? Is there a defect report or evolution paper discussing this? Any plans to incorporate these traits in C++1Y? Is there an acknowledged 'correct' version somewhere?
swapreturn void? Not that I can think of anything else sensible for it to return. I'm trying to be helpful: if you're sure that your code is wrong and I can find some inconsequential flaw, then it doesn't have to have a major flaw ;-) – Steve Jessop Jan 23 at 15:31noexceptcan be used as a keyword similar todecltypeto propagate exception specifications. For example, thestd::swapoverload for fixed size arrays has an exception specification ofnoexcept(noexcept(swap(*a, *b))), which means it's noexcept iff the swap of the individual elements is noexcept. – Dave S Jan 23 at 15:41using std swap; swap(a, b)so that I'll get the ADL swap if it is available, andstd::swapif not. But I don't see a way to achieve that same effect in thenoexceptexpression, meaning that the test and the code are potentially mismatched. – acm Jan 23 at 15:51