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 19f4a39232.
PrevUpHomeNext

grammar::ci_is_equal

Return true if s0 equals s1 using case-insensitive comparison.

Synopsis

Defined in header <boost/url/grammar/ci_string.hpp>

template<
    class String0,
    class String1>
bool
ci_is_equal(
    String0 const& s0,
    String1 const& s1);
Description

The function is defined only for strings containing low-ASCII characters.

Example
assert( ci_is_equal( "Boost" , "boost" ) );
See Also

ci_compare, ci_is_less.

Convenience header <boost/url/grammar.hpp>


PrevUpHomeNext