has_trivial_constructor.qbk 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. [/
  2. Copyright 2007 John Maddock.
  3. Distributed under the Boost Software License, Version 1.0.
  4. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt).
  6. ]
  7. [section:has_trivial_constructor has_trivial_constructor]
  8. template <class T>
  9. struct has_trivial_constructor : public __tof {};
  10. template <class T>
  11. struct has_trivial_default_constructor : public __tof {};
  12. __inherit If T is a (possibly cv-qualified) type with a trivial default-constructor
  13. then inherits from __true_type, otherwise inherits from __false_type.
  14. These two traits are synonyms for each other.
  15. If a type has a trivial default-constructor then the constructor have no effect:
  16. calls to the constructor can be safely omitted. Note that using meta-programming
  17. to omit a call to a single trivial-constructor call is of no benefit whatsoever.
  18. However, if loops and/or exception handling code can also be omitted, then some
  19. benefit in terms of code size and speed can be obtained.
  20. __compat Without some (as yet unspecified) help from the compiler,
  21. has_trivial_constructor will never report that a user-defined class or struct has a
  22. trivial constructor; this is always safe, if possibly sub-optimal.
  23. In addition, in order to correctly handle private or deleted default-constructors then
  24. C++11's `deltype` is required.
  25. Currently (May 2015) compilers more recent than Visual C++ 8, GCC-4.3, Greenhills 6.0,
  26. Intel-11.0, and Codegear have the necessary compiler __intrinsics to ensure that this
  27. trait "just works". You may also test to see if the necessary __intrinsics are available
  28. by checking to see if the macro `BOOST_HAS_TRIVIAL_CONSTRUCTOR` is defined.
  29. __std_ref 12.1p6.
  30. __header ` #include <boost/type_traits/has_trivial_constructor.hpp>` or ` #include <boost/type_traits.hpp>`
  31. __examples
  32. [:`has_trivial_constructor<int>` inherits from `__true_type`.]
  33. [:`has_trivial_constructor<char*>::type` is the type `__true_type`.]
  34. [:`has_trivial_constructor<int (*)(long)>::value` is an integral constant
  35. expression that evaluates to /true/.]
  36. [:`has_trivial_constructor<MyClass>::value` is an integral constant
  37. expression that evaluates to /false/.]
  38. [:`has_trivial_constructor<T>::value_type` is the type `bool`.]
  39. [endsect]