Public Types | Public Member Functions | Private Attributes | Friends | List of all members
basic_string_view< Char > Class Template Reference

#include <core.h>

Public Types

using iterator = const Char *
 
using value_type = Char
 

Public Member Functions

constexpr basic_string_view () FMT_NOEXCEPT
 
constexpr basic_string_view (const Char *s, size_t count) FMT_NOEXCEPT
 
 basic_string_view (const Char *s)
 
template<typename Traits , typename Alloc >
FMT_CONSTEXPR basic_string_view (const std::basic_string< Char, Traits, Alloc > &s) FMT_NOEXCEPT
 
template<typename S , FMT_ENABLE_IF(std::is_same< S, detail::std_string_view< Char >>::value) >
FMT_CONSTEXPR basic_string_view (S s) FMT_NOEXCEPT
 
constexpr iterator begin () const
 
int compare (basic_string_view other) const
 
constexpr const Char * data () const
 
constexpr iterator end () const
 
constexpr const Char & operator[] (size_t pos) const
 
FMT_CONSTEXPR void remove_prefix (size_t n)
 
constexpr size_t size () const
 

Private Attributes

const Char * data_
 
size_t size_
 

Friends

bool operator!= (basic_string_view lhs, basic_string_view rhs)
 
bool operator< (basic_string_view lhs, basic_string_view rhs)
 
bool operator<= (basic_string_view lhs, basic_string_view rhs)
 
bool operator== (basic_string_view lhs, basic_string_view rhs)
 
bool operator> (basic_string_view lhs, basic_string_view rhs)
 
bool operator>= (basic_string_view lhs, basic_string_view rhs)
 

Detailed Description

template<typename Char>
class basic_string_view< Char >

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).

Definition at line 347 of file core.h.

Member Typedef Documentation

template<typename Char>
using basic_string_view< Char >::iterator = const Char*

Definition at line 354 of file core.h.

template<typename Char>
using basic_string_view< Char >::value_type = Char

Definition at line 353 of file core.h.

Constructor & Destructor Documentation

template<typename Char>
constexpr basic_string_view< Char >::basic_string_view ( )
inline

Definition at line 356 of file core.h.

template<typename Char>
constexpr basic_string_view< Char >::basic_string_view ( const Char *  s,
size_t  count 
)
inline

Constructs a string reference object from a C string and a size.

Definition at line 359 of file core.h.

template<typename Char>
basic_string_view< Char >::basic_string_view ( const Char *  s)
inline

Constructs a string reference object from a C string computing the size with std::char_traits<Char>::length.

Definition at line 372 of file core.h.

template<typename Char>
template<typename Traits , typename Alloc >
FMT_CONSTEXPR basic_string_view< Char >::basic_string_view ( const std::basic_string< Char, Traits, Alloc > &  s)
inline

Constructs a string reference from a std::basic_string object.

Definition at line 377 of file core.h.

template<typename Char>
template<typename S , FMT_ENABLE_IF(std::is_same< S, detail::std_string_view< Char >>::value) >
FMT_CONSTEXPR basic_string_view< Char >::basic_string_view ( s)
inline

Definition at line 384 of file core.h.

Member Function Documentation

template<typename Char>
constexpr iterator basic_string_view< Char >::begin ( ) const
inline

Definition at line 393 of file core.h.

template<typename Char>
int basic_string_view< Char >::compare ( basic_string_view< Char >  other) const
inline

Definition at line 404 of file core.h.

template<typename Char>
constexpr const Char* basic_string_view< Char >::data ( ) const
inline

Returns a pointer to the string data.

Definition at line 388 of file core.h.

template<typename Char>
constexpr iterator basic_string_view< Char >::end ( ) const
inline

Definition at line 394 of file core.h.

template<typename Char>
constexpr const Char& basic_string_view< Char >::operator[] ( size_t  pos) const
inline

Definition at line 396 of file core.h.

template<typename Char>
FMT_CONSTEXPR void basic_string_view< Char >::remove_prefix ( size_t  n)
inline

Definition at line 398 of file core.h.

template<typename Char>
constexpr size_t basic_string_view< Char >::size ( ) const
inline

Returns the string size.

Definition at line 391 of file core.h.

Friends And Related Function Documentation

template<typename Char>
bool operator!= ( basic_string_view< Char >  lhs,
basic_string_view< Char >  rhs 
)
friend

Definition at line 415 of file core.h.

template<typename Char>
bool operator< ( basic_string_view< Char >  lhs,
basic_string_view< Char >  rhs 
)
friend

Definition at line 418 of file core.h.

template<typename Char>
bool operator<= ( basic_string_view< Char >  lhs,
basic_string_view< Char >  rhs 
)
friend

Definition at line 421 of file core.h.

template<typename Char>
bool operator== ( basic_string_view< Char >  lhs,
basic_string_view< Char >  rhs 
)
friend

Definition at line 412 of file core.h.

template<typename Char>
bool operator> ( basic_string_view< Char >  lhs,
basic_string_view< Char >  rhs 
)
friend

Definition at line 424 of file core.h.

template<typename Char>
bool operator>= ( basic_string_view< Char >  lhs,
basic_string_view< Char >  rhs 
)
friend

Definition at line 427 of file core.h.

Member Data Documentation

template<typename Char>
const Char* basic_string_view< Char >::data_
private

Definition at line 349 of file core.h.

template<typename Char>
size_t basic_string_view< Char >::size_
private

Definition at line 350 of file core.h.


The documentation for this class was generated from the following file:


plotjuggler
Author(s): Davide Faconti
autogenerated on Sun Dec 6 2020 04:02:49