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 an older version of Boost and was released in 2013. The current version is 1.89.0.
boost::algorithm::iequals — 'Equals' predicate ( case insensitive )
// In header: <boost/algorithm/string/predicate.hpp> template<typename Range1T, typename Range2T> bool iequals(const Range1T & Input, const Range2T & Test, const std::locale & Loc = std::locale());
This predicate holds when the test container is equal to the input container i.e. all elements in both containers are same. Elements are compared case insensitively.
![]() |
Note |
|---|---|
|
This is a two-way version of This function provides the strong exception-safety guarantee |
Parameters: |
|
||||||
Returns: |
The result of the test |