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

Function template dissect_formatter

boost::algorithm::dissect_formatter — Empty formatter.

Synopsis

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


template<typename FinderT> 
  unspecified dissect_formatter(const FinderT & Finder);

Description

Constructs a dissect_formatter. Dissect formatter uses a specified finder to extract a portion of the formatted sequence. The first finder's match is returned as a result

Parameters:

Finder

a finder used to select a portion of the formated sequence

Returns:

An instance of the dissect_formatter object.


PrevUpHomeNext