| 111 | */ |
| 112 | template<typename Range1T, typename Range2T> |
| 113 | inline bool istarts_with( |
| 114 | const Range1T& Input, |
| 115 | const Range2T& Test, |
| 116 | const std::locale& Loc=std::locale()) |
| 117 | { |
| 118 | return ::boost::algorithm::starts_with(Input, Test, is_iequal(Loc)); |
| 119 | } |
| 120 | |
| 121 | |
| 122 | // ends_with predicate -----------------------------------------------// |
nothing calls this directly
no test coverage detected