|
| constexpr | basic_string_view () noexcept |
| |
| constexpr | basic_string_view (const basic_string_view &) noexcept=default |
| |
| constexpr | basic_string_view (const CharT *s) noexcept |
| |
| constexpr | basic_string_view (const CharT *s, size_type count) noexcept |
| |
| basic_string_view & | operator= (const basic_string_view &) noexcept=default |
| |
| constexpr const_iterator | begin () const noexcept |
| |
| constexpr const_iterator | end () const noexcept |
| |
| constexpr const_iterator | cbegin () const noexcept |
| |
| constexpr const_iterator | cend () const noexcept |
| |
| constexpr const_reverse_iterator | rbegin () const noexcept |
| |
| constexpr const_reverse_iterator | rend () const noexcept |
| |
| constexpr const_reverse_iterator | crbegin () const noexcept |
| |
| constexpr const_reverse_iterator | crend () const noexcept |
| |
| constexpr size_type | size () const noexcept |
| |
| constexpr size_type | length () const noexcept |
| |
| constexpr size_type | max_size () const noexcept |
| |
| constexpr bool | empty () const noexcept |
| |
| const_reference | operator[] (size_type pos) const noexcept |
| |
| const_reference | at (size_type pos) const |
| |
| const_reference | front () const noexcept |
| |
| const_reference | back () const noexcept |
| |
| constexpr const_pointer | data () const noexcept |
| |
| void | remove_prefix (size_type n) noexcept |
| |
| void | remove_suffix (size_type n) noexcept |
| |
| void | swap (basic_string_view &other) noexcept |
| |
| size_type | copy (CharT *s, size_type n, size_type pos=0) const |
| |
| basic_string_view | substr (size_type pos=0, size_type n=npos) const noexcept(false) |
| |
| int | compare (const basic_string_view &s) const noexcept |
| |
| constexpr int | compare (size_type pos1, size_type n1, const basic_string_view &s) const |
| |
| constexpr int | compare (size_type pos1, size_type n1, const basic_string_view &s, size_type pos2, size_type n2) const |
| |
| constexpr int | compare (const CharT *s) const noexcept |
| |
| constexpr int | compare (size_type pos1, size_type n1, const CharT *s) const |
| |
| constexpr int | compare (size_type pos1, size_type n1, const CharT *s, size_type n2) const noexcept(false) |
| |
| constexpr bool | starts_with (const basic_string_view &other) const noexcept |
| |
| constexpr bool | starts_with (CharT c) const noexcept |
| |
| constexpr bool | starts_with (const CharT *s) const noexcept |
| |
| constexpr bool | ends_with (const basic_string_view &other) const noexcept |
| |
| constexpr bool | ends_with (CharT c) const noexcept |
| |
| constexpr bool | ends_with (const CharT *s) const noexcept |
| |
| constexpr size_type | find (const basic_string_view &s, size_type pos=0) const noexcept |
| |
| size_type | find (CharT c, size_type pos=0) const noexcept |
| |
| size_type | find (const CharT *s, size_type pos, size_type n) const noexcept |
| |
| constexpr size_type | find (const CharT *s, size_type pos=0) const noexcept |
| |
| size_type | rfind (basic_string_view s, size_type pos=npos) const noexcept |
| |
| size_type | rfind (CharT c, size_type pos=npos) const noexcept |
| |
| size_type | rfind (const CharT *s, size_type pos, size_type n) const noexcept |
| |
| constexpr size_type | rfind (const CharT *s, size_type pos=npos) const noexcept |
| |
| constexpr size_type | find_first_of (basic_string_view s, size_type pos=0) const noexcept |
| |
| constexpr size_type | find_first_of (CharT c, size_type pos=0) const noexcept |
| |
| size_type | find_first_of (const CharT *s, size_type pos, size_type n) const noexcept |
| |
| constexpr size_type | find_first_of (const CharT *s, size_type pos=0) const noexcept |
| |
| constexpr size_type | find_last_of (basic_string_view s, size_type pos=npos) const noexcept |
| |
| constexpr size_type | find_last_of (CharT c, size_type pos=npos) const noexcept |
| |
| size_type | find_last_of (const CharT *s, size_type pos, size_type n) const noexcept |
| |
| constexpr size_type | find_last_of (const CharT *s, size_type pos=npos) const noexcept |
| |
| size_type | find_first_not_of (basic_string_view s, size_type pos=0) const noexcept |
| |
| size_type | find_first_not_of (CharT c, size_type pos=0) const noexcept |
| |
| size_type | find_first_not_of (const CharT *s, size_type pos, size_type n) const noexcept |
| |
| constexpr size_type | find_first_not_of (const CharT *s, size_type pos=0) const noexcept |
| |
| size_type | find_last_not_of (basic_string_view s, size_type pos=npos) const noexcept |
| |
| size_type | find_last_not_of (CharT c, size_type pos=npos) const noexcept |
| |
| size_type | find_last_not_of (const CharT *s, size_type pos, size_type n) const noexcept |
| |
| constexpr size_type | find_last_not_of (const CharT *s, size_type pos=npos) const noexcept |
| |
Custom string view implementation in order to meet C++11 baseline
- Template Parameters
-