|  | Home | Libraries | People | FAQ | More | 
boost::algorithm::iends_with — 'Ends with' predicate ( case insensitive )
// In header: <boost/algorithm/string/predicate.hpp> template<typename Range1T, typename Range2T> bool iends_with(const Range1T & Input, const Range2T & Test, const std::locale & Loc = std::locale());
This predicate holds when the test container is a suffix of the Input. In other words, if the input ends with the test. Elements are compared case insensitively.
| ![[Note]](../../../../doc/src/images/note.png) | Note | 
|---|---|
| This function provides the strong exception-safety guarantee | 
| Parameters: | 
 | ||||||
| Returns: | The result of the test |