SimulationCraft
SimulationCraft is a tool to explore combat mechanics in the popular MMO RPG World of Warcraft (tm).
basic_string_view< Char > Class Template Reference

An implementation of std::basic_string_view for pre-C++17. More...

#include <core.h>

Public Types

using value_type = Char
 
using iterator = const Char *
 

Public Member Functions

constexpr basic_string_view (const Char *s, size_t count) FMT_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)
 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) FMT_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) FMT_NOEXCEPT
 
constexpr auto data () const FMT_NOEXCEPT -> const Char *
 Returns a pointer to the string data. More...
 
constexpr auto size () const FMT_NOEXCEPT -> size_t
 Returns the string size. More...
 
constexpr auto begin () const FMT_NOEXCEPT -> iterator
 
constexpr auto end () const FMT_NOEXCEPT -> iterator
 
constexpr auto operator[] (size_t pos) const FMT_NOEXCEPT -> const Char &
 
FMT_CONSTEXPR void remove_prefix (size_t n) FMT_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
 

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

Constructor & Destructor Documentation

◆ basic_string_view() [1/3]

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.

◆ basic_string_view() [2/3]

template<typename Char>
FMT_CONSTEXPR_CHAR_TRAITS FMT_INLINE 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.

◆ basic_string_view() [3/3]

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.

Member Function Documentation

◆ data()

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

Returns a pointer to the string data.

◆ size()

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

Returns the string size.