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 trim_right_if

boost::algorithm::trim_right_if — Right trim - parametric.

Synopsis

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


template<typename SequenceT, typename PredicateT> 
  void trim_right_if(SequenceT & Input, PredicateT IsSpace);

Description

Remove all trailing spaces from the input. The supplied predicate is used to determine which characters are considered spaces. The input sequence is modified in-place.

Parameters:

Input

An input sequence

IsSpace

An unary predicate identifying spaces


PrevUpHomeNext