| 256 | */ |
| 257 | template<typename Range1T, typename Range2T> |
| 258 | inline bool icontains( |
| 259 | const Range1T& Input, |
| 260 | const Range2T& Test, |
| 261 | const std::locale& Loc=std::locale()) |
| 262 | { |
| 263 | return ::boost::algorithm::contains(Input, Test, is_iequal(Loc)); |
| 264 | } |
| 265 | |
| 266 | // equals predicate -----------------------------------------------// |
| 267 |