コード例 #1
0
ファイル: lstrip.hpp プロジェクト: Pikalchemist/pythran
 types::str lstrip(types::str const& self, types::str const& to_del = " ")
 {
     return types::str(self.begin() + self.find_first_not_of(to_del), self.end());
 }