Squashed 'third_party/boostorg/type_traits/' content from commit 059ed88
Change-Id: I222c604dfa1db194bf53bc6aa1152fb16e83ce06
git-subtree-dir: third_party/boostorg/type_traits
git-subtree-split: 059ed8839da3fecd1e8b62cdc11be006f6346b5e
diff --git a/doc/is_copy_assignable.qbk b/doc/is_copy_assignable.qbk
new file mode 100644
index 0000000..5555441
--- /dev/null
+++ b/doc/is_copy_assignable.qbk
@@ -0,0 +1,50 @@
+[/
+ Copyright 2007 John Maddock.
+ Copyright 2014 Ion Gaztanaga.
+ Distributed under the Boost Software License, Version 1.0.
+ (See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt).
+]
+
+[section:is_copy_assignable is_copy_assignable]
+
+ template <class T>
+ struct is_copy_assignable : public __tof {};
+
+__inherit If `T` is `CopyAssignable` (i.e. has an accessible explicit or implicit copy assignment operator),
+then inherits from __true_type, otherwise inherits from __false_type. Type `T`
+must be a complete type.
+
+In other words, inherits from __true_type only if copy assignment of `T` from `const T &` is not
+marked with `= delete`, `T` does not derives from `boost::noncopyable` and
+is not marked with `BOOST_MOVABLE_BUT_NOT_COPYABLE(T)`.
+
+__compat Requires the C++11 features `decltype` and SFINAE-expressions for full support.
+
+If your compiler does not support C++11 deleted functions (`= delete`) or does not support
+SFINAE for the deleted assignments, then derive your classes from `boost::noncopyable` or
+mark them with `BOOST_MOVABLE_BUT_NOT_COPYABLE(T)` to show that class is non-assignable.
+
+Trait does not care about access modifiers, so if you see errors like this:
+
+ 'T::operator=(const T&)' is private
+ boost/type_traits/is_copy_assignable.hpp:68:5: error: within this context
+
+then you are trying to call that macro for a structure with private assignment:
+
+ struct T {
+ // ...
+ private:
+ T &operator=(const T &);
+ // ...
+ };
+
+To fix that you must modify your structure, explicitly marking it as noncopyable (`= delete`,
+`boost::noncopyable` or `BOOST_MOVABLE_BUT_NOT_COPYABLE(T)`) or explicitly
+[link boost_typetraits.user_defined specializing the trait].
+
+
+__header ` #include <boost/type_traits/is_copy_assignable.hpp>` or ` #include <boost/type_traits.hpp>`
+
+[endsect]
+