| 141 | */ |
| 142 | template<typename SequenceT> |
| 143 | inline void trim_left(SequenceT& Input, const std::locale& Loc=std::locale()) |
| 144 | { |
| 145 | ::boost::algorithm::trim_left_if( |
| 146 | Input, |
| 147 | is_space(Loc)); |
| 148 | } |
| 149 | |
| 150 | // right trim -----------------------------------------------// |
| 151 |
no test coverage detected