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 begins_with_fun

boost::log::begins_with_fun — The begins_with functor.

Synopsis

// In header: <boost/log/utility/functional/begins_with.hpp>


struct begins_with_fun {
  // types
  typedef bool result_type;

  // public member functions
  template<typename T, typename U> bool operator()(T const &, U const &) const;
};

Description

begins_with_fun public member functions

  1. template<typename T, typename U> 
      bool operator()(T const & left, U const & right) const;

PrevUpHomeNext