| 340 | */ |
| 341 | template<typename Range1T, typename Range2T> |
| 342 | inline bool iequals( |
| 343 | const Range1T& Input, |
| 344 | const Range2T& Test, |
| 345 | const std::locale& Loc=std::locale()) |
| 346 | { |
| 347 | return ::boost::algorithm::equals(Input, Test, is_iequal(Loc)); |
| 348 | } |
| 349 | |
| 350 | // lexicographical_compare predicate -----------------------------// |
| 351 |