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 develop branch, built from commit 038bb4be4a.
PrevUpHomeNext

Global transform_replace

boost::parser::transform_replace

Synopsis

// In header: <boost/parser/transform_replace.hpp>

unspecified transform_replace;

Description

A range adaptor object ([range.adaptor.object]). Given subexpressions E and P, Q, R, and 'S', each of the expressions replace(E, P), replace(E, P, Q). replace(E, P, Q, R), and replace(E, P, Q, R, S) are expression-equivalent to replace_view(E, P), replace_view(E, P, Q), replace_view(E, P, Q, R), replace_view(E, P, Q, R, S), respectively.


PrevUpHomeNext