#include "cetl/pf17/string_view.hpp"
Public Types | |
enum | : size_type { npos = static_cast<size_type>(-1) } |
using | traits_type = Traits |
using | value_type = CharT |
using | pointer = CharT* |
using | const_pointer = const CharT* |
using | reference = CharT& |
using | const_reference = const CharT& |
using | const_iterator = const CharT* |
using | iterator = const_iterator |
using | size_type = std::size_t |
using | difference_type = std::ptrdiff_t |
Public Member Functions | |
constexpr | basic_string_view () noexcept |
basic_string_view (const CharT *const str) | |
template<typename Alloc> | |
basic_string_view (const std::basic_string< CharT, Traits, Alloc > &str) | |
constexpr | basic_string_view (const CharT *const str, const size_type size) |
constexpr | basic_string_view (std::nullptr_t)=delete |
constexpr size_type | size () const noexcept |
constexpr size_type | length () const noexcept |
constexpr size_type | max_size () const noexcept |
constexpr bool | empty () const noexcept |
constexpr const_reference | operator[] (const size_type pos) const |
constexpr const_reference | at (const size_type pos) const |
constexpr const_reference | front () const |
constexpr const_reference | back () const |
constexpr const_pointer | data () const noexcept |
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 void | remove_prefix (const size_type n) |
constexpr void | remove_suffix (const size_type n) |
constexpr void | swap (basic_string_view &sv) noexcept |
size_type | copy (CharT *const dest, const size_type count, const size_type pos=0) const |
constexpr basic_string_view | substr (const size_type pos=0, const size_type count=npos) const |
int | compare (const basic_string_view sv) const noexcept |
constexpr size_type | find (const CharT ch, const size_type pos=0) const noexcept |
constexpr size_type | find (const basic_string_view sv, const size_type pos=0) const noexcept |
Friends | |
bool | operator== (const basic_string_view lhs, const basic_string_view rhs) noexcept |
bool | operator!= (const basic_string_view lhs, const basic_string_view rhs) noexcept |
bool | operator< (const basic_string_view lhs, const basic_string_view rhs) noexcept |
bool | operator> (const basic_string_view lhs, const basic_string_view rhs) noexcept |
bool | operator<= (const basic_string_view lhs, const basic_string_view rhs) noexcept |
bool | operator>= (const basic_string_view lhs, const basic_string_view rhs) noexcept |
std::basic_ostream< CharT, Traits > & | operator<< (std::basic_ostream< CharT, Traits > &os, const basic_string_view &sv) |
The class template basic_string_view describes an object that can refer to a constant contiguous sequence of CharT with the first element of the sequence at position zero.
|
inlineconstexprnoexcept |
Default constructor.
Constructs an empty basic_string_view. After construction, data() is equal to nullptr, and size() is equal to 0.
|
inline |
Constructs a view of the null-terminated character string pointed to by s, not including the terminating null character.
No lint and Sonar cpp:S1709 b/c this is an intentional implicit conversion.
NOLINTNEXTLINE(google-explicit-constructor, hicpp-explicit-conversions)
|
inline |
No lint and Sonar cpp:S1709 b/c this is an intentional implicit conversion.
NOLINTNEXTLINE(google-explicit-constructor, hicpp-explicit-conversions)
|
inlineconstexpr |
Constructs a view of the first count characters of the character array starting with the element pointed by str.
str can contain null characters.
|
constexprdelete |
basic_string_view cannot be constructed from nullptr.
|
inlineconstexpr |
Returns a const reference to the character at specified location pos
.
Bounds checking is performed, exception of type std::out_of_range
will be thrown on invalid access.
|
inlineconstexpr |
Returns reference to the last character in the view.
The behavior is undefined if empty() == true
.
|
inlineconstexprnoexcept |
Returns an iterator to the first character of the view.
|
inlineconstexprnoexcept |
Returns a constant iterator to the first character of the view.
|
inlineconstexprnoexcept |
Returns a constant iterator to the character following the last character of the view.
This character acts as a placeholder, attempting to access it results in undefined behavior.
|
inlinenoexcept |
Compares two character sequences.
|
inline |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
Checks if the view has no characters, i.e.
whether size() == 0
.
|
inlineconstexprnoexcept |
Returns an iterator to the character following the last character of the view.
This character acts as a placeholder, attempting to access it results in undefined behavior.
|
inlineconstexprnoexcept |
Finds the first substring equal to the given character sequence.
|
inlineconstexprnoexcept |
Finds the first substring equal to the given character.
|
inlineconstexpr |
Returns reference to the first character in the view.
The behavior is undefined if empty() == true
.
|
inlineconstexprnoexcept |
Returns the number of CharT elements in the view, i.e.
|
inlineconstexprnoexcept |
The largest possible number of char-like objects that can be referred to by a basic_string_view.
|
inlineconstexpr |
Returns a const reference to the character at specified location pos
.
|
inlineconstexpr |
Moves the start of the view forward by n characters.
The behavior is undefined if n > size()
.
|
inlineconstexpr |
Moves the end of the view back by n characters.
The behavior is undefined if n > size()
.
|
inlineconstexprnoexcept |
Returns the number of CharT elements in the view, i.e.
|
inlineconstexpr |
Returns a view of the substring [pos, pos + rlen)
, where rlen
is the smaller of count
and size() - pos
.
|
inlineconstexprnoexcept |
Exchanges the view with that of sv
.
|
friend |
Performs stream output on string view.
|
friend |
Compares two views.