WPILibC++ 2023.4.3-108-ge5452e3
|
An implementation of std::basic_string_view
for pre-C++17.
More...
#include </home/runner/work/allwpilib/allwpilib/wpiutil/src/main/native/thirdparty/fmtlib/include/fmt/core.h>
Public Types | |
using | value_type = Char |
using | iterator = const Char * |
Public Member Functions | |
constexpr | basic_string_view () noexcept |
constexpr | basic_string_view (const Char *s, size_t count) noexcept |
Constructs a string reference object from a C string and a size. More... | |
FMT_CONSTEXPR_CHAR_TRAITS FMT_INLINE | basic_string_view (const Char *s) |
\rst Constructs a string reference object from a C string computing the size with std::char_traits<Char>::length . More... | |
template<typename Traits , typename Alloc > | |
FMT_CONSTEXPR | basic_string_view (const std::basic_string< Char, Traits, Alloc > &s) noexcept |
Constructs a string reference from a std::basic_string object. More... | |
template<typename S , FMT_ENABLE_IF(std::is_same< S, detail::std_string_view< Char > >::value) > | |
FMT_CONSTEXPR | basic_string_view (S s) noexcept |
constexpr auto | data () const noexcept -> const Char * |
Returns a pointer to the string data. More... | |
constexpr auto | size () const noexcept -> size_t |
Returns the string size. More... | |
constexpr auto | begin () const noexcept -> iterator |
constexpr auto | end () const noexcept -> iterator |
constexpr auto | operator[] (size_t pos) const noexcept -> const Char & |
FMT_CONSTEXPR void | remove_prefix (size_t n) noexcept |
FMT_CONSTEXPR_CHAR_TRAITS auto | compare (basic_string_view other) const -> int |
Friends | |
FMT_CONSTEXPR_CHAR_TRAITS friend auto | operator== (basic_string_view lhs, basic_string_view rhs) -> bool |
auto | operator!= (basic_string_view lhs, basic_string_view rhs) -> bool |
auto | operator< (basic_string_view lhs, basic_string_view rhs) -> bool |
auto | operator<= (basic_string_view lhs, basic_string_view rhs) -> bool |
auto | operator> (basic_string_view lhs, basic_string_view rhs) -> bool |
auto | operator>= (basic_string_view lhs, basic_string_view rhs) -> bool |
An implementation of std::basic_string_view
for pre-C++17.
It provides a subset of the API. fmt::basic_string_view
is used for format strings even if std::string_view
is available to prevent issues when a library is compiled with a different -std
option than the client code (which is not recommended).
using basic_string_view< Char >::iterator = const Char* |
using basic_string_view< Char >::value_type = Char |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
Constructs a string reference object from a C string and a size.
|
inline |
\rst Constructs a string reference object from a C string computing the size with std::char_traits<Char>::length
.
\endrst
|
inlinenoexcept |
Constructs a string reference from a std::basic_string
object.
|
inlinenoexcept |
|
inlineconstexprnoexcept |
|
inline |
|
inlineconstexprnoexcept |
Returns a pointer to the string data.
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlinenoexcept |
|
inlineconstexprnoexcept |
Returns the string size.
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |