| 338 | */ |
| 339 | template<typename SequenceT> |
| 340 | inline SequenceT trim_copy( const SequenceT& Input, const std::locale& Loc=std::locale() ) |
| 341 | { |
| 342 | return |
| 343 | ::boost::algorithm::trim_copy_if( |
| 344 | Input, |
| 345 | is_space(Loc) ); |
| 346 | } |
| 347 | |
| 348 | //! Trim |
| 349 | /*! |
no test coverage detected