| 195 | */ |
| 196 | template<typename SequenceT, typename RangeT> |
| 197 | inline void trim_fill(SequenceT& Input, const RangeT& Fill, const std::locale& Loc =std::locale()) |
| 198 | { |
| 199 | trim_fill_if(Input, Fill, ::boost::is_space(Loc)); |
| 200 | } |
| 201 | |
| 202 | |
| 203 | } // namespace algorithm |
nothing calls this directly
no test coverage detected