Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template Eq_traits

boost::container::basic_string::Eq_traits

Synopsis

// In header: <boost/container/string.hpp>


template<typename CharT, typename Traits = std::char_traits<CharT>, 
         typename Allocator = void> 
struct Eq_traits {
  // types
  typedef Tr::char_type first_argument_type; 
  typedef Tr::char_type second_argument_type;
  typedef bool          result_type;         

  // public member functions
  bool operator()(const first_argument_type &, const second_argument_type &) const;
};

Description

Eq_traits public member functions

  1. bool operator()(const first_argument_type & x, const second_argument_type & y) const;

PrevUpHomeNext