| 356 | */ |
| 357 | template<typename SequenceT, typename PredicateT> |
| 358 | inline void trim_if(SequenceT& Input, PredicateT IsSpace) |
| 359 | { |
| 360 | ::boost::algorithm::trim_right_if( Input, IsSpace ); |
| 361 | ::boost::algorithm::trim_left_if( Input, IsSpace ); |
| 362 | } |
| 363 | |
| 364 | //! Trim |
| 365 | /*! |
no test coverage detected