#include <str.hpp>
Public Member Functions | |
str | capitalize () const |
str | center (object_cref width) const |
long | count (object_cref sub) const |
long | count (object_cref sub, object_cref start) const |
long | count (object_cref sub, object_cref start, object_cref end) const |
object | decode () const |
object | decode (object_cref encoding) const |
object | decode (object_cref encoding, object_cref errors) const |
object | encode () const |
object | encode (object_cref encoding) const |
object | encode (object_cref encoding, object_cref errors) const |
bool | endswith (object_cref suffix) const |
bool | endswith (object_cref suffix, object_cref start) const |
bool | endswith (object_cref suffix, object_cref start, object_cref end) const |
str | expandtabs () const |
str | expandtabs (object_cref tabsize) const |
long | find (object_cref sub) const |
long | find (object_cref sub, object_cref start) const |
long | find (object_cref sub, object_cref start, object_cref end) const |
long | index (object_cref sub) const |
long | index (object_cref sub, object_cref start) const |
long | index (object_cref sub, object_cref start, object_cref end) const |
bool | isalnum () const |
bool | isalpha () const |
bool | isdigit () const |
bool | islower () const |
bool | isspace () const |
bool | istitle () const |
bool | isupper () const |
str | join (object_cref sequence) const |
str | ljust (object_cref width) const |
str | lower () const |
str | lstrip () const |
str | replace (object_cref old, object_cref new_) const |
str | replace (object_cref old, object_cref new_, object_cref maxsplit) const |
long | rfind (object_cref sub) const |
long | rfind (object_cref sub, object_cref start) const |
long | rfind (object_cref sub, object_cref start, object_cref end) const |
long | rindex (object_cref sub) const |
long | rindex (object_cref sub, object_cref start) const |
long | rindex (object_cref sub, object_cref start, object_cref end) const |
str | rjust (object_cref width) const |
str | rstrip () const |
list | split () const |
list | split (object_cref sep) const |
list | split (object_cref sep, object_cref maxsplit) const |
list | splitlines () const |
list | splitlines (object_cref keepends) const |
bool | startswith (object_cref prefix) const |
bool | startswith (object_cref prefix, object_cref start) const |
bool | startswith (object_cref prefix, object_cref start, object_cref end) const |
str | strip () const |
str | swapcase () const |
str | title () const |
str | translate (object_cref table) const |
str | translate (object_cref table, object_cref deletechars) const |
str | upper () const |
Protected Member Functions | |
str_base () | |
str_base (const char *s) | |
str_base (char const *start, char const *finish) | |
str_base (char const *start, std::size_t length) | |
str_base (object_cref other) | |
|
protected |
|
protected |
|
protected |
|
protected |
|
explicitprotected |
str boost::python::detail::str_base::capitalize | ( | ) | const |
str boost::python::detail::str_base::center | ( | object_cref | width | ) | const |
Referenced by boost::python::str::center().
long boost::python::detail::str_base::count | ( | object_cref | sub | ) | const |
Referenced by boost::python::str::count().
long boost::python::detail::str_base::count | ( | object_cref | sub, |
object_cref | start | ||
) | const |
long boost::python::detail::str_base::count | ( | object_cref | sub, |
object_cref | start, | ||
object_cref | end | ||
) | const |
object boost::python::detail::str_base::decode | ( | ) | const |
Referenced by boost::python::str::decode().
object boost::python::detail::str_base::decode | ( | object_cref | encoding | ) | const |
object boost::python::detail::str_base::decode | ( | object_cref | encoding, |
object_cref | errors | ||
) | const |
object boost::python::detail::str_base::encode | ( | ) | const |
Referenced by boost::python::str::encode().
object boost::python::detail::str_base::encode | ( | object_cref | encoding | ) | const |
object boost::python::detail::str_base::encode | ( | object_cref | encoding, |
object_cref | errors | ||
) | const |
bool boost::python::detail::str_base::endswith | ( | object_cref | suffix | ) | const |
Referenced by boost::python::str::endswith().
bool boost::python::detail::str_base::endswith | ( | object_cref | suffix, |
object_cref | start | ||
) | const |
bool boost::python::detail::str_base::endswith | ( | object_cref | suffix, |
object_cref | start, | ||
object_cref | end | ||
) | const |
str boost::python::detail::str_base::expandtabs | ( | ) | const |
Referenced by boost::python::str::expandtabs().
str boost::python::detail::str_base::expandtabs | ( | object_cref | tabsize | ) | const |
long boost::python::detail::str_base::find | ( | object_cref | sub | ) | const |
Referenced by boost::python::str::find().
long boost::python::detail::str_base::find | ( | object_cref | sub, |
object_cref | start | ||
) | const |
long boost::python::detail::str_base::find | ( | object_cref | sub, |
object_cref | start, | ||
object_cref | end | ||
) | const |
long boost::python::detail::str_base::index | ( | object_cref | sub | ) | const |
Referenced by boost::python::str::index().
long boost::python::detail::str_base::index | ( | object_cref | sub, |
object_cref | start | ||
) | const |
long boost::python::detail::str_base::index | ( | object_cref | sub, |
object_cref | start, | ||
object_cref | end | ||
) | const |
bool boost::python::detail::str_base::isalnum | ( | ) | const |
bool boost::python::detail::str_base::isalpha | ( | ) | const |
bool boost::python::detail::str_base::isdigit | ( | ) | const |
bool boost::python::detail::str_base::islower | ( | ) | const |
bool boost::python::detail::str_base::isspace | ( | ) | const |
bool boost::python::detail::str_base::istitle | ( | ) | const |
bool boost::python::detail::str_base::isupper | ( | ) | const |
str boost::python::detail::str_base::join | ( | object_cref | sequence | ) | const |
Referenced by boost::python::str::join().
str boost::python::detail::str_base::ljust | ( | object_cref | width | ) | const |
Referenced by boost::python::str::ljust().
str boost::python::detail::str_base::lower | ( | ) | const |
str boost::python::detail::str_base::lstrip | ( | ) | const |
str boost::python::detail::str_base::replace | ( | object_cref | old, |
object_cref | new_ | ||
) | const |
Referenced by boost::python::str::replace().
str boost::python::detail::str_base::replace | ( | object_cref | old, |
object_cref | new_, | ||
object_cref | maxsplit | ||
) | const |
long boost::python::detail::str_base::rfind | ( | object_cref | sub | ) | const |
Referenced by boost::python::str::rfind().
long boost::python::detail::str_base::rfind | ( | object_cref | sub, |
object_cref | start | ||
) | const |
long boost::python::detail::str_base::rfind | ( | object_cref | sub, |
object_cref | start, | ||
object_cref | end | ||
) | const |
long boost::python::detail::str_base::rindex | ( | object_cref | sub | ) | const |
Referenced by boost::python::str::rindex().
long boost::python::detail::str_base::rindex | ( | object_cref | sub, |
object_cref | start | ||
) | const |
long boost::python::detail::str_base::rindex | ( | object_cref | sub, |
object_cref | start, | ||
object_cref | end | ||
) | const |
str boost::python::detail::str_base::rjust | ( | object_cref | width | ) | const |
Referenced by boost::python::str::rjust().
str boost::python::detail::str_base::rstrip | ( | ) | const |
list boost::python::detail::str_base::split | ( | ) | const |
Referenced by boost::python::str::split().
list boost::python::detail::str_base::split | ( | object_cref | sep | ) | const |
list boost::python::detail::str_base::split | ( | object_cref | sep, |
object_cref | maxsplit | ||
) | const |
list boost::python::detail::str_base::splitlines | ( | ) | const |
Referenced by boost::python::str::splitlines().
list boost::python::detail::str_base::splitlines | ( | object_cref | keepends | ) | const |
bool boost::python::detail::str_base::startswith | ( | object_cref | prefix | ) | const |
Referenced by boost::python::str::startswith().
bool boost::python::detail::str_base::startswith | ( | object_cref | prefix, |
object_cref | start | ||
) | const |
bool boost::python::detail::str_base::startswith | ( | object_cref | prefix, |
object_cref | start, | ||
object_cref | end | ||
) | const |
str boost::python::detail::str_base::strip | ( | ) | const |
str boost::python::detail::str_base::swapcase | ( | ) | const |
str boost::python::detail::str_base::title | ( | ) | const |
str boost::python::detail::str_base::translate | ( | object_cref | table | ) | const |
Referenced by boost::python::str::translate().
str boost::python::detail::str_base::translate | ( | object_cref | table, |
object_cref | deletechars | ||
) | const |
str boost::python::detail::str_base::upper | ( | ) | const |