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 adcd4c09f0.
PrevUpHomeNext

iequals

Returns true if two strings are equal, using a case-insensitive comparison.

Synopsis

Defined in header <boost/beast/core/string.hpp>

bool
iequals(
    beast::string_view lhs,
    beast::string_view rhs);
Description

The case-comparison operation is defined only for low-ASCII characters.

Parameters

Name

Description

lhs

The string on the left side of the equality

rhs

The string on the right side of the equality


PrevUpHomeNext