Lightweight 0.1.0
|
#include <SqlFixedString.hpp>
Public Types | |
using | value_type = T |
using | iterator = T * |
using | const_iterator = T const * |
using | pointer_type = T * |
using | const_pointer_type = T const * |
Public Member Functions | |
template<std::size_t SourceSize> | |
constexpr LIGHTWEIGHT_FORCE_INLINE | SqlFixedString (T const (&text)[SourceSize]) |
Constructs a fixed-size string from a string literal. | |
LIGHTWEIGHT_FORCE_INLINE constexpr | SqlFixedString (SqlFixedString const &) noexcept=default |
LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString & | operator= (SqlFixedString const &) noexcept=default |
LIGHTWEIGHT_FORCE_INLINE constexpr | SqlFixedString (SqlFixedString &&) noexcept=default |
LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString & | operator= (SqlFixedString &&) noexcept=default |
LIGHTWEIGHT_FORCE_INLINE constexpr | SqlFixedString (std::basic_string_view< T > s) noexcept |
Constructs a fixed-size string from a string view. | |
LIGHTWEIGHT_FORCE_INLINE constexpr | SqlFixedString (std::basic_string< T > const &s) noexcept |
Constructs a fixed-size string from a string. | |
LIGHTWEIGHT_FORCE_INLINE constexpr | SqlFixedString (T const *s, std::size_t len) noexcept |
Constructs a fixed-size string from a string pointer and length. | |
LIGHTWEIGHT_FORCE_INLINE constexpr | SqlFixedString (T const *s, T const *e) noexcept |
Constructs a fixed-size string from a string pointer and end pointer. | |
LIGHTWEIGHT_FORCE_INLINE void | reserve (std::size_t capacity) |
LIGHTWEIGHT_FORCE_INLINE constexpr bool | empty () const noexcept |
Tests if the string is empty. | |
LIGHTWEIGHT_FORCE_INLINE constexpr std::size_t | size () const noexcept |
Returns the size of the string. | |
LIGHTWEIGHT_FORCE_INLINE void | setsize (std::size_t n) noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr void | resize (std::size_t n) noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr std::size_t | capacity () const noexcept |
Returns the maximum capacity of the string. | |
LIGHTWEIGHT_FORCE_INLINE constexpr void | clear () noexcept |
Clears the string. | |
template<std::size_t SourceSize> | |
LIGHTWEIGHT_FORCE_INLINE constexpr void | assign (T const (&source)[SourceSize]) noexcept |
Assigns a string literal to the string. | |
LIGHTWEIGHT_FORCE_INLINE constexpr void | assign (std::string_view s) noexcept |
Assigns a string view to the string. | |
LIGHTWEIGHT_FORCE_INLINE constexpr void | push_back (T c) noexcept |
Appends a character to the string. | |
LIGHTWEIGHT_FORCE_INLINE constexpr void | pop_back () noexcept |
Removes the last character from the string. | |
LIGHTWEIGHT_FORCE_INLINE constexpr std::basic_string_view< T > | substr (std::size_t offset=0, std::size_t count=(std::numeric_limits< std::size_t >::max)()) const noexcept |
Returns a sub string of the string. | |
LIGHTWEIGHT_FORCE_INLINE constexpr std::basic_string_view< T > | str () const noexcept |
Returns a string view of the string. | |
LIGHTWEIGHT_FORCE_INLINE constexpr pointer_type | c_str () noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr pointer_type | data () noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr iterator | begin () noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr iterator | end () noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr T & | at (std::size_t i) noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr T & | operator[] (std::size_t i) noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr const_pointer_type | c_str () const noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr const_pointer_type | data () const noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr const_iterator | begin () const noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr const_iterator | end () const noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr T const & | at (std::size_t i) const noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr T const & | operator[] (std::size_t i) const noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr std::basic_string_view< T > | ToStringView () const noexcept |
template<std::size_t OtherSize, SqlFixedStringMode OtherMode> | |
LIGHTWEIGHT_FORCE_INLINE std::weak_ordering | operator<=> (SqlFixedString< OtherSize, T, OtherMode > const &other) const noexcept |
template<std::size_t OtherSize, SqlFixedStringMode OtherMode> | |
LIGHTWEIGHT_FORCE_INLINE constexpr bool | operator== (SqlFixedString< OtherSize, T, OtherMode > const &other) const noexcept |
template<std::size_t OtherSize, SqlFixedStringMode OtherMode> | |
LIGHTWEIGHT_FORCE_INLINE constexpr bool | operator!= (SqlFixedString< OtherSize, T, OtherMode > const &other) const noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr bool | operator== (std::basic_string_view< T > other) const noexcept |
LIGHTWEIGHT_FORCE_INLINE constexpr bool | operator!= (std::basic_string_view< T > other) const noexcept |
Static Public Attributes | |
static constexpr std::size_t | Capacity = N |
static constexpr SqlFixedStringMode | PostRetrieveOperation = Mode |
SQL fixed-capacity string that mimmicks standard library string/string_view with a fixed-size underlying buffer.
The underlying storage will not be guaranteed to be \0
-terminated unless a call to mutable/const c_str() has been performed.
Definition at line 28 of file SqlFixedString.hpp.
using SqlFixedString< N, T, Mode >::value_type = T |
Definition at line 35 of file SqlFixedString.hpp.
using SqlFixedString< N, T, Mode >::iterator = T* |
Definition at line 36 of file SqlFixedString.hpp.
using SqlFixedString< N, T, Mode >::const_iterator = T const* |
Definition at line 37 of file SqlFixedString.hpp.
using SqlFixedString< N, T, Mode >::pointer_type = T* |
Definition at line 38 of file SqlFixedString.hpp.
using SqlFixedString< N, T, Mode >::const_pointer_type = T const* |
Definition at line 39 of file SqlFixedString.hpp.
|
inlineconstexpr |
Constructs a fixed-size string from a string literal.
Definition at line 46 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Constructs a fixed-size string from a string view.
Definition at line 61 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Constructs a fixed-size string from a string.
Definition at line 68 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Constructs a fixed-size string from a string pointer and length.
Definition at line 75 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Constructs a fixed-size string from a string pointer and end pointer.
Definition at line 82 of file SqlFixedString.hpp.
|
inline |
Definition at line 88 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Tests if the string is empty.
Definition at line 96 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Returns the size of the string.
Definition at line 102 of file SqlFixedString.hpp.
|
inlinenoexcept |
Definition at line 107 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Resizes the string.
This sets the size of the string to n
. If n
is greater than the current size, capped at the maximum capacity.
Definition at line 118 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Returns the maximum capacity of the string.
Definition at line 126 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Clears the string.
Definition at line 132 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Assigns a string literal to the string.
Definition at line 139 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Assigns a string view to the string.
Definition at line 147 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Appends a character to the string.
Definition at line 154 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Removes the last character from the string.
Definition at line 164 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Returns a sub string of the string.
Definition at line 171 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Returns a string view of the string.
Definition at line 184 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 190 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 191 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 192 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 193 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 194 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 195 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 197 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 198 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 199 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 200 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 201 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 202 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 205 of file SqlFixedString.hpp.
|
inlinenoexcept |
Definition at line 216 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 229 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 236 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 242 of file SqlFixedString.hpp.
|
inlineconstexprnoexcept |
Definition at line 247 of file SqlFixedString.hpp.
|
staticconstexpr |
Definition at line 41 of file SqlFixedString.hpp.
|
staticconstexpr |
Definition at line 42 of file SqlFixedString.hpp.