#include <senf/Utils/type_traits.hh>

std::pair type
if Pair is any std::pair type, this trait will inherit from boost::true_type, otherwise it will inherit from boost::false_type.
BOOST_STATIC_ASSERT(( senf::is_pair< std::pair<int,void*> >::value )); BOOST_STATIC_ASSERT(( ! senf::is_pair< void () >::value ));
Definition at line 274 of file type_traits.hh.