| 213 | */ |
| 214 | template<typename SequenceT> |
| 215 | inline SequenceT trim_right_copy(const SequenceT& Input, const std::locale& Loc=std::locale()) |
| 216 | { |
| 217 | return |
| 218 | ::boost::algorithm::trim_right_copy_if( |
| 219 | Input, |
| 220 | is_space(Loc)); |
| 221 | } |
| 222 | |
| 223 | |
| 224 | //! Right trim - parametric |
nothing calls this directly
no test coverage detected