has_trivial_move_constructor.qbk 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [/
  2. Copyright 2007 John Maddock.
  3. Copyright 2013 Antony Polukhin.
  4. Distributed under the Boost Software License, Version 1.0.
  5. (See accompanying file LICENSE_1_0.txt or copy at
  6. http://www.boost.org/LICENSE_1_0.txt).
  7. ]
  8. [section:has_trivial_move_constructor has_trivial_move_constructor]
  9. template <class T>
  10. struct has_trivial_move_constructor : public __tof {};
  11. __inherit If T is a (possibly cv-qualified) type with a trivial move-constructor
  12. then inherits from __true_type, otherwise inherits from __false_type.
  13. If a type has a trivial move-constructor then the constructor has the same effect
  14. as copying the bits of one object to the other:
  15. calls to the constructor can be safely replaced with a call to `memcpy`.
  16. __compat Without some (as yet unspecified) help from the compiler,
  17. has_trivial_move_constructor will never report that a user-defined class or struct has a
  18. trivial constructor; this is always safe, if possibly sub-optimal.
  19. In addition C++11's `decltype` is required to correctly support deleted or private
  20. move constructors.
  21. Currently (June 2015) compilers that have the necessary __intrinsics to ensure that this
  22. trait "just works" include Clang, GCC-5.1, and MSVC-12.0.
  23. You may also test to see if the necessary __intrinsics are available
  24. by checking to see if the macro `BOOST_HAS_TRIVIAL_MOVE_CONSTRUCTOR` is defined.
  25. __header ` #include <boost/type_traits/has_trivial_move_constructor.hpp>` or ` #include <boost/type_traits.hpp>`
  26. __examples
  27. [:`has_trivial_move_constructor<int>` inherits from `__true_type`.]
  28. [:`has_trivial_move_constructor<char*>::type` is the type `__true_type`.]
  29. [:`has_trivial_move_constructor<int (*)(long)>::value` is an integral constant
  30. expression that evaluates to /true/.]
  31. [:`has_trivial_move_constructor<MyClass>::value` is an integral constant
  32. expression that evaluates to /false/.]
  33. [:`has_trivial_move_constructor<T>::value_type` is the type `bool`.]
  34. [endsect]