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

#include <SqlDynamicString.hpp>

Public Types

using value_type = T
 
using string_type = std::basic_string< T >
 

Public Member Functions

template<std::size_t SourceSize>
constexpr LIGHTWEIGHT_FORCE_INLINE SqlDynamicString (T const (&text)[SourceSize])
 Constructs a fixed-size string from a string literal.
 
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDynamicString (T const *s, T const *e) noexcept
 Constructs a fixed-size string from a string pointer and end pointer.
 
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDynamicString (SqlDynamicString const &) noexcept=default
 
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDynamicStringoperator= (SqlDynamicString const &) noexcept=default
 
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDynamicString (SqlDynamicString &&) noexcept=default
 
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDynamicStringoperator= (SqlDynamicString &&) noexcept=default
 
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDynamicString (std::basic_string_view< T > s) noexcept
 Constructs a fixed-size string from a string view.
 
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDynamicString (std::basic_string< T > const &s) noexcept
 Constructs a fixed-size string from a string.
 
LIGHTWEIGHT_FORCE_INLINE string_type const & value () const noexcept
 Retrieves the string's inner value (std::basic_string<T>).
 
LIGHTWEIGHT_FORCE_INLINE string_type & value () noexcept
 Retrieves the string's inner value (std::basic_string<T>).
 
LIGHTWEIGHT_FORCE_INLINE T const * data () const noexcept
 Retrieves the string's inner value (as T const*).
 
LIGHTWEIGHT_FORCE_INLINE T * data () noexcept
 Retrieves the string's inner value (as T*).
 
LIGHTWEIGHT_FORCE_INLINE std::size_t capacity () const noexcept
 Retrieves the string's capacity.
 
LIGHTWEIGHT_FORCE_INLINE std::size_t size () const noexcept
 Retrieves the string's size.
 
LIGHTWEIGHT_FORCE_INLINE constexpr bool empty () const noexcept
 Tests if the string is empty.
 
LIGHTWEIGHT_FORCE_INLINE constexpr void clear () noexcept
 Clears the string.
 
LIGHTWEIGHT_FORCE_INLINE constexpr void resize (std::size_t n) noexcept
 Resizes the string.
 
LIGHTWEIGHT_FORCE_INLINE constexpr std::basic_string_view< T > ToStringView () const noexcept
 Retrieves a string view of the string.
 
LIGHTWEIGHT_FORCE_INLINE constexpr T & operator[] (std::size_t index) noexcept
 
LIGHTWEIGHT_FORCE_INLINE constexpr T const & operator[] (std::size_t index) const noexcept
 
template<std::size_t OtherSize>
LIGHTWEIGHT_FORCE_INLINE std::weak_ordering operator<=> (SqlDynamicString< OtherSize, T > const &other) const noexcept
 
template<std::size_t OtherSize>
LIGHTWEIGHT_FORCE_INLINE constexpr bool operator== (SqlDynamicString< OtherSize, T > const &other) const noexcept
 
template<std::size_t OtherSize>
LIGHTWEIGHT_FORCE_INLINE constexpr bool operator!= (SqlDynamicString< OtherSize, T > 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 DynamicCapacity = N
 

Detailed Description

template<std::size_t N, typename T = char>
class SqlDynamicString< N, T >

SQL dynamic-capacity string that mimmicks standard library string.

The underlying memory is allocated dynamically and the string can grow up to the maximum size of a SQL column.

Definition at line 22 of file SqlDynamicString.hpp.

Member Typedef Documentation

◆ value_type

template<std::size_t N, typename T = char>
using SqlDynamicString< N, T >::value_type = T

Definition at line 26 of file SqlDynamicString.hpp.

◆ string_type

template<std::size_t N, typename T = char>
using SqlDynamicString< N, T >::string_type = std::basic_string<T>

Definition at line 27 of file SqlDynamicString.hpp.

Constructor & Destructor Documentation

◆ SqlDynamicString() [1/4]

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

Constructs a fixed-size string from a string literal.

Definition at line 31 of file SqlDynamicString.hpp.

◆ SqlDynamicString() [2/4]

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

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

Definition at line 38 of file SqlDynamicString.hpp.

◆ SqlDynamicString() [3/4]

template<std::size_t N, typename T = char>
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDynamicString< N, T >::SqlDynamicString ( std::basic_string_view< T >  s)
inlineconstexprnoexcept

Constructs a fixed-size string from a string view.

Definition at line 51 of file SqlDynamicString.hpp.

◆ SqlDynamicString() [4/4]

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

Constructs a fixed-size string from a string.

Definition at line 57 of file SqlDynamicString.hpp.

Member Function Documentation

◆ value() [1/2]

template<std::size_t N, typename T = char>
LIGHTWEIGHT_FORCE_INLINE string_type const & SqlDynamicString< N, T >::value ( ) const
inlinenoexcept

Retrieves the string's inner value (std::basic_string<T>).

Definition at line 63 of file SqlDynamicString.hpp.

◆ value() [2/2]

template<std::size_t N, typename T = char>
LIGHTWEIGHT_FORCE_INLINE string_type & SqlDynamicString< N, T >::value ( )
inlinenoexcept

Retrieves the string's inner value (std::basic_string<T>).

Definition at line 69 of file SqlDynamicString.hpp.

◆ data() [1/2]

template<std::size_t N, typename T = char>
LIGHTWEIGHT_FORCE_INLINE T const * SqlDynamicString< N, T >::data ( ) const
inlinenoexcept

Retrieves the string's inner value (as T const*).

Definition at line 75 of file SqlDynamicString.hpp.

◆ data() [2/2]

template<std::size_t N, typename T = char>
LIGHTWEIGHT_FORCE_INLINE T * SqlDynamicString< N, T >::data ( )
inlinenoexcept

Retrieves the string's inner value (as T*).

Definition at line 81 of file SqlDynamicString.hpp.

◆ capacity()

template<std::size_t N, typename T = char>
LIGHTWEIGHT_FORCE_INLINE std::size_t SqlDynamicString< N, T >::capacity ( ) const
inlinenoexcept

Retrieves the string's capacity.

Definition at line 87 of file SqlDynamicString.hpp.

◆ size()

template<std::size_t N, typename T = char>
LIGHTWEIGHT_FORCE_INLINE std::size_t SqlDynamicString< N, T >::size ( ) const
inlinenoexcept

Retrieves the string's size.

Definition at line 93 of file SqlDynamicString.hpp.

◆ empty()

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

Tests if the string is empty.

Definition at line 99 of file SqlDynamicString.hpp.

◆ clear()

template<std::size_t N, typename T = char>
LIGHTWEIGHT_FORCE_INLINE constexpr void SqlDynamicString< N, T >::clear ( )
inlineconstexprnoexcept

Clears the string.

Definition at line 105 of file SqlDynamicString.hpp.

◆ resize()

template<std::size_t N, typename T = char>
LIGHTWEIGHT_FORCE_INLINE constexpr void SqlDynamicString< N, T >::resize ( std::size_t  n)
inlineconstexprnoexcept

Resizes the string.

Definition at line 111 of file SqlDynamicString.hpp.

◆ ToStringView()

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

Retrieves a string view of the string.

Definition at line 117 of file SqlDynamicString.hpp.

◆ operator[]() [1/2]

template<std::size_t N, typename T = char>
LIGHTWEIGHT_FORCE_INLINE constexpr T & SqlDynamicString< N, T >::operator[] ( std::size_t  index)
inlineconstexprnoexcept

Definition at line 122 of file SqlDynamicString.hpp.

◆ operator[]() [2/2]

template<std::size_t N, typename T = char>
LIGHTWEIGHT_FORCE_INLINE constexpr T const & SqlDynamicString< N, T >::operator[] ( std::size_t  index) const
inlineconstexprnoexcept

Definition at line 127 of file SqlDynamicString.hpp.

◆ operator<=>()

template<std::size_t N, typename T = char>
template<std::size_t OtherSize>
LIGHTWEIGHT_FORCE_INLINE std::weak_ordering SqlDynamicString< N, T >::operator<=> ( SqlDynamicString< OtherSize, T > const &  other) const
inlinenoexcept

Definition at line 138 of file SqlDynamicString.hpp.

◆ operator==() [1/2]

template<std::size_t N, typename T = char>
template<std::size_t OtherSize>
LIGHTWEIGHT_FORCE_INLINE constexpr bool SqlDynamicString< N, T >::operator== ( SqlDynamicString< OtherSize, T > const &  other) const
inlineconstexprnoexcept

Definition at line 144 of file SqlDynamicString.hpp.

◆ operator!=() [1/2]

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

Definition at line 150 of file SqlDynamicString.hpp.

◆ operator==() [2/2]

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

Definition at line 155 of file SqlDynamicString.hpp.

◆ operator!=() [2/2]

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

Definition at line 160 of file SqlDynamicString.hpp.

Member Data Documentation

◆ DynamicCapacity

template<std::size_t N, typename T = char>
constexpr std::size_t SqlDynamicString< N, T >::DynamicCapacity = N
staticconstexpr

Definition at line 25 of file SqlDynamicString.hpp.


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