blob: ec045f11181c11b4f3330a04007fed9d101201f4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef PYTHONIC_INCLUDE_BUILTIN_STR_STRIP_HPP
#define PYTHONIC_INCLUDE_BUILTIN_STR_STRIP_HPP
#include "pythonic/include/types/str.hpp"
#include "pythonic/include/utils/functor.hpp"
PYTHONIC_NS_BEGIN
namespace builtins
{
namespace str
{
types::str strip(types::str const &self, types::str const &to_del = " \n");
DEFINE_FUNCTOR(pythonic::builtins::str, strip);
}
}
PYTHONIC_NS_END
#endif
|