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 a snapshot of the master branch, built from commit a2b80500d6.
PrevUpHomeNext

Struct template l2_visitor

boost::log::attribute_value_ordering::l2_visitor

Synopsis

// In header: <boost/log/utility/record_ordering.hpp>


template<typename LeftT> 
struct l2_visitor {
  // types
  typedef void result_type;

  // public member functions
  l2_visitor(FunT const &, LeftT const &, bool &);
  template<typename RightT> result_type operator()(RightT const &) const;
};

Description

l2_visitor public member functions

  1. l2_visitor(FunT const & fun, LeftT const & left, bool & result);
  2. template<typename RightT> result_type operator()(RightT const & right) const;

PrevUpHomeNext