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 master branch, built from commit a8a4da0b3c.
PrevUpHomeNext
ignore_case_param::ignore_case_param (2 of 2 overloads)

Constructor.

Synopsis
constexpr
ignore_case_param(
    implementation-defined);
Description

Construction from ignore_case indicates that comparisons should be case-insensitive.

Example

When ignore_case is passed as an argument, this function ignores case when performing comparisons:

void f( ignore_case_param = {} );

PrevUpHomeNext