...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
namespace boost { template<typename T> class reference_wrapper; reference_wrapper<T> ref(T&); reference_wrapper<T const> cref(T const&); unwrap_reference<T>::type& unwrap_ref(T&); template<typename T> class is_reference_wrapper; template<typename T> class unwrap_reference; }