|
BOOST_CONSTEXPR | basic_string_ref () |
|
BOOST_CONSTEXPR | basic_string_ref (const basic_string_ref &rhs) |
|
basic_string_ref & | operator= (const basic_string_ref &rhs) |
|
| basic_string_ref (const charT *str) |
|
template<typename Allocator > |
| basic_string_ref (const std::basic_string< charT, traits, Allocator > &str) |
|
BOOST_CONSTEXPR | basic_string_ref (const charT *str, size_type len) |
|
template<typename Allocator > |
| operator std::basic_string< charT, traits, Allocator > () const |
|
std::basic_string< charT, traits > | to_string () const |
|
BOOST_CONSTEXPR const_iterator | begin () const |
|
BOOST_CONSTEXPR const_iterator | cbegin () const |
|
BOOST_CONSTEXPR const_iterator | end () const |
|
BOOST_CONSTEXPR const_iterator | cend () const |
|
const_reverse_iterator | rbegin () const |
|
const_reverse_iterator | crbegin () const |
|
const_reverse_iterator | rend () const |
|
const_reverse_iterator | crend () const |
|
BOOST_CONSTEXPR size_type | size () const |
|
BOOST_CONSTEXPR size_type | length () const |
|
BOOST_CONSTEXPR size_type | max_size () const |
|
BOOST_CONSTEXPR bool | empty () const |
|
BOOST_CONSTEXPR const charT & | operator[] (size_type pos) const |
|
const charT & | at (size_t pos) const |
|
BOOST_CONSTEXPR const charT & | front () const |
|
BOOST_CONSTEXPR const charT & | back () const |
|
BOOST_CONSTEXPR const charT * | data () const |
|
void | clear () |
|
void | remove_prefix (size_type n) |
|
void | remove_suffix (size_type n) |
|
basic_string_ref | substr (size_type pos, size_type n=npos) const |
|
int | compare (basic_string_ref x) const |
|
bool | starts_with (charT c) const |
|
bool | starts_with (basic_string_ref x) const |
|
bool | ends_with (charT c) const |
|
bool | ends_with (basic_string_ref x) const |
|
size_type | find (basic_string_ref s) const |
|
size_type | find (charT c) const |
|
size_type | rfind (basic_string_ref s) const |
|
size_type | rfind (charT c) const |
|
size_type | find_first_of (charT c) const |
|
size_type | find_last_of (charT c) const |
|
size_type | find_first_of (basic_string_ref s) const |
|
size_type | find_last_of (basic_string_ref s) const |
|
size_type | find_first_not_of (basic_string_ref s) const |
|
size_type | find_first_not_of (charT c) const |
|
size_type | find_last_not_of (basic_string_ref s) const |
|
size_type | find_last_not_of (charT c) const |
|