| 104 | */ |
| 105 | template<typename SequenceT> |
| 106 | inline SequenceT trim_left_copy(const SequenceT& Input, const std::locale& Loc=std::locale()) |
| 107 | { |
| 108 | return |
| 109 | ::boost::algorithm::trim_left_copy_if( |
| 110 | Input, |
| 111 | is_space(Loc)); |
| 112 | } |
| 113 | |
| 114 | //! Left trim |
| 115 | /*! |
nothing calls this directly
no test coverage detected