| 112 | */ |
| 113 | template<typename SequenceT> |
| 114 | inline void trim_all(SequenceT& Input, const std::locale& Loc =std::locale()) |
| 115 | { |
| 116 | trim_all_if(Input, ::boost::is_space(Loc)); |
| 117 | } |
| 118 | |
| 119 | |
| 120 | //! Trim Fill - parametric |
nothing calls this directly
no test coverage detected