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 to_upper

boost::algorithm::to_upper — Convert to upper case.

Synopsis

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


template<typename WritableRangeT> 
  void to_upper(WritableRangeT & Input, 
                const std::locale & Loc = std::locale());

Description

Each element of the input sequence is converted to upper case. The input sequence is modified in-place.

Parameters:

Input

An input range

Loc

a locale used for conversion


PrevUpHomeNext