Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Struct template has_nothrow_move

boost::has_nothrow_move

Synopsis

// In header: <boost/move/traits.hpp>

template<typename T> 
struct has_nothrow_move {

  // public data members
  static const bool value;
};

Description

boost::is_nothrow_move_constructible<T>::value && boost::is_nothrow_move_assignable<T>::value 

PrevUpHomeNext