Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function to_lower_copy

boost::algorithm::to_lower_copy — Convert to lower case.

Synopsis

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


template<typename OutputIteratorT, typename RangeT> 
   
  ( Output,  Input, 
                 Loc = );
template<typename SequenceT> 
   ( Input,  Loc = );

Description

Each element of the input sequence is converted to lower case. The result is a copy of the input converted to lower case. It is returned as a sequence or copied to the output iterator.

[Note] Note

The second variant of this function provides the strong exception-safety guarantee

Parameters:

Input

An input range

Loc

A locale used for conversion

Output

An output iterator to which the result will be copied

Returns:

An output iterator pointing just after the last inserted character or a copy of the input


PrevUpHomeNext