Lightweight 0.1.0
Loading...
Searching...
No Matches
SqlFixedString< N, T, Mode > Class Template Reference

#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 SqlFixedStringoperator= (SqlFixedString const &) noexcept=default
 
LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString (SqlFixedString &&) noexcept=default
 
LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedStringoperator= (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
 

Detailed Description

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
class SqlFixedString< N, T, 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.

Member Typedef Documentation

◆ value_type

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
using SqlFixedString< N, T, Mode >::value_type = T

Definition at line 35 of file SqlFixedString.hpp.

◆ iterator

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
using SqlFixedString< N, T, Mode >::iterator = T*

Definition at line 36 of file SqlFixedString.hpp.

◆ const_iterator

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
using SqlFixedString< N, T, Mode >::const_iterator = T const*

Definition at line 37 of file SqlFixedString.hpp.

◆ pointer_type

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
using SqlFixedString< N, T, Mode >::pointer_type = T*

Definition at line 38 of file SqlFixedString.hpp.

◆ const_pointer_type

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
using SqlFixedString< N, T, Mode >::const_pointer_type = T const*

Definition at line 39 of file SqlFixedString.hpp.

Constructor & Destructor Documentation

◆ SqlFixedString() [1/5]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
template<std::size_t SourceSize>
constexpr LIGHTWEIGHT_FORCE_INLINE SqlFixedString< N, T, Mode >::SqlFixedString ( T const (&)  text[SourceSize])
inlineconstexpr

Constructs a fixed-size string from a string literal.

Definition at line 46 of file SqlFixedString.hpp.

◆ SqlFixedString() [2/5]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString< N, T, Mode >::SqlFixedString ( std::basic_string_view< T >  s)
inlineconstexprnoexcept

Constructs a fixed-size string from a string view.

Definition at line 61 of file SqlFixedString.hpp.

◆ SqlFixedString() [3/5]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString< N, T, Mode >::SqlFixedString ( std::basic_string< T > const &  s)
inlineconstexprnoexcept

Constructs a fixed-size string from a string.

Definition at line 68 of file SqlFixedString.hpp.

◆ SqlFixedString() [4/5]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString< N, T, Mode >::SqlFixedString ( T const *  s,
std::size_t  len 
)
inlineconstexprnoexcept

Constructs a fixed-size string from a string pointer and length.

Definition at line 75 of file SqlFixedString.hpp.

◆ SqlFixedString() [5/5]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString< N, T, Mode >::SqlFixedString ( T const *  s,
T const *  e 
)
inlineconstexprnoexcept

Constructs a fixed-size string from a string pointer and end pointer.

Definition at line 82 of file SqlFixedString.hpp.

Member Function Documentation

◆ reserve()

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE void SqlFixedString< N, T, Mode >::reserve ( std::size_t  capacity)
inline

Definition at line 88 of file SqlFixedString.hpp.

◆ empty()

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr bool SqlFixedString< N, T, Mode >::empty ( ) const
inlineconstexprnoexcept

Tests if the string is empty.

Definition at line 96 of file SqlFixedString.hpp.

◆ size()

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr std::size_t SqlFixedString< N, T, Mode >::size ( ) const
inlineconstexprnoexcept

Returns the size of the string.

Definition at line 102 of file SqlFixedString.hpp.

◆ setsize()

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE void SqlFixedString< N, T, Mode >::setsize ( std::size_t  n)
inlinenoexcept

Definition at line 107 of file SqlFixedString.hpp.

◆ resize()

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr void SqlFixedString< N, T, Mode >::resize ( std::size_t  n)
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.

◆ capacity()

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr std::size_t SqlFixedString< N, T, Mode >::capacity ( ) const
inlineconstexprnoexcept

Returns the maximum capacity of the string.

Definition at line 126 of file SqlFixedString.hpp.

◆ clear()

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr void SqlFixedString< N, T, Mode >::clear ( )
inlineconstexprnoexcept

Clears the string.

Definition at line 132 of file SqlFixedString.hpp.

◆ assign() [1/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
template<std::size_t SourceSize>
LIGHTWEIGHT_FORCE_INLINE constexpr void SqlFixedString< N, T, Mode >::assign ( T const (&)  source[SourceSize])
inlineconstexprnoexcept

Assigns a string literal to the string.

Definition at line 139 of file SqlFixedString.hpp.

◆ assign() [2/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr void SqlFixedString< N, T, Mode >::assign ( std::string_view  s)
inlineconstexprnoexcept

Assigns a string view to the string.

Definition at line 147 of file SqlFixedString.hpp.

◆ push_back()

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr void SqlFixedString< N, T, Mode >::push_back ( c)
inlineconstexprnoexcept

Appends a character to the string.

Definition at line 154 of file SqlFixedString.hpp.

◆ pop_back()

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr void SqlFixedString< N, T, Mode >::pop_back ( )
inlineconstexprnoexcept

Removes the last character from the string.

Definition at line 164 of file SqlFixedString.hpp.

◆ substr()

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr std::basic_string_view< T > SqlFixedString< N, T, Mode >::substr ( std::size_t  offset = 0,
std::size_t  count = (std::numeric_limits<std::size_t>::max)() 
) const
inlineconstexprnoexcept

Returns a sub string of the string.

Definition at line 171 of file SqlFixedString.hpp.

◆ str()

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr std::basic_string_view< T > SqlFixedString< N, T, Mode >::str ( ) const
inlineconstexprnoexcept

Returns a string view of the string.

Definition at line 184 of file SqlFixedString.hpp.

◆ c_str() [1/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr pointer_type SqlFixedString< N, T, Mode >::c_str ( )
inlineconstexprnoexcept

Definition at line 190 of file SqlFixedString.hpp.

◆ data() [1/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr pointer_type SqlFixedString< N, T, Mode >::data ( )
inlineconstexprnoexcept

Definition at line 191 of file SqlFixedString.hpp.

◆ begin() [1/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr iterator SqlFixedString< N, T, Mode >::begin ( )
inlineconstexprnoexcept

Definition at line 192 of file SqlFixedString.hpp.

◆ end() [1/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr iterator SqlFixedString< N, T, Mode >::end ( )
inlineconstexprnoexcept

Definition at line 193 of file SqlFixedString.hpp.

◆ at() [1/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr T & SqlFixedString< N, T, Mode >::at ( std::size_t  i)
inlineconstexprnoexcept

Definition at line 194 of file SqlFixedString.hpp.

◆ operator[]() [1/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr T & SqlFixedString< N, T, Mode >::operator[] ( std::size_t  i)
inlineconstexprnoexcept

Definition at line 195 of file SqlFixedString.hpp.

◆ c_str() [2/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr const_pointer_type SqlFixedString< N, T, Mode >::c_str ( ) const
inlineconstexprnoexcept

Definition at line 197 of file SqlFixedString.hpp.

◆ data() [2/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr const_pointer_type SqlFixedString< N, T, Mode >::data ( ) const
inlineconstexprnoexcept

Definition at line 198 of file SqlFixedString.hpp.

◆ begin() [2/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr const_iterator SqlFixedString< N, T, Mode >::begin ( ) const
inlineconstexprnoexcept

Definition at line 199 of file SqlFixedString.hpp.

◆ end() [2/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr const_iterator SqlFixedString< N, T, Mode >::end ( ) const
inlineconstexprnoexcept

Definition at line 200 of file SqlFixedString.hpp.

◆ at() [2/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr T const & SqlFixedString< N, T, Mode >::at ( std::size_t  i) const
inlineconstexprnoexcept

Definition at line 201 of file SqlFixedString.hpp.

◆ operator[]() [2/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr T const & SqlFixedString< N, T, Mode >::operator[] ( std::size_t  i) const
inlineconstexprnoexcept

Definition at line 202 of file SqlFixedString.hpp.

◆ ToStringView()

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr std::basic_string_view< T > SqlFixedString< N, T, Mode >::ToStringView ( ) const
inlineconstexprnoexcept

Definition at line 205 of file SqlFixedString.hpp.

◆ operator<=>()

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
template<std::size_t OtherSize, SqlFixedStringMode OtherMode>
LIGHTWEIGHT_FORCE_INLINE std::weak_ordering SqlFixedString< N, T, Mode >::operator<=> ( SqlFixedString< OtherSize, T, OtherMode > const &  other) const
inlinenoexcept

Definition at line 216 of file SqlFixedString.hpp.

◆ operator==() [1/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
template<std::size_t OtherSize, SqlFixedStringMode OtherMode>
LIGHTWEIGHT_FORCE_INLINE constexpr bool SqlFixedString< N, T, Mode >::operator== ( SqlFixedString< OtherSize, T, OtherMode > const &  other) const
inlineconstexprnoexcept

Definition at line 229 of file SqlFixedString.hpp.

◆ operator!=() [1/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
template<std::size_t OtherSize, SqlFixedStringMode OtherMode>
LIGHTWEIGHT_FORCE_INLINE constexpr bool SqlFixedString< N, T, Mode >::operator!= ( SqlFixedString< OtherSize, T, OtherMode > const &  other) const
inlineconstexprnoexcept

Definition at line 236 of file SqlFixedString.hpp.

◆ operator==() [2/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr bool SqlFixedString< N, T, Mode >::operator== ( std::basic_string_view< T >  other) const
inlineconstexprnoexcept

Definition at line 242 of file SqlFixedString.hpp.

◆ operator!=() [2/2]

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
LIGHTWEIGHT_FORCE_INLINE constexpr bool SqlFixedString< N, T, Mode >::operator!= ( std::basic_string_view< T >  other) const
inlineconstexprnoexcept

Definition at line 247 of file SqlFixedString.hpp.

Member Data Documentation

◆ Capacity

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
constexpr std::size_t SqlFixedString< N, T, Mode >::Capacity = N
staticconstexpr

Definition at line 41 of file SqlFixedString.hpp.

◆ PostRetrieveOperation

template<std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
constexpr SqlFixedStringMode SqlFixedString< N, T, Mode >::PostRetrieveOperation = Mode
staticconstexpr

Definition at line 42 of file SqlFixedString.hpp.


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