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 template FormatterConcept

boost::algorithm::FormatterConcept — Formatter concept.

Synopsis

// In header: <boost/algorithm/string/concept.hpp>

template<typename FormatterT, typename FinderT, typename IteratorT> 
struct FormatterConcept {

  // public member functions
  void constraints();
};

Description

Defines the Formatter concept. Formatter is a functor, which takes a result from a finder operation and transforms it in a specific way.

Result must be a container supported by container_traits, or a reference to it.

FormatterConcept public member functions

  1. void constraints();

PrevUpHomeNext