qxLib
Public Member Functions | List of all members
qx::string_data< traits_t > Class Template Reference

Represents string data. More...

#include <string_data.h>

Public Member Functions

pointer data () noexcept
 Get string data: from buffer or from pointer. More...
 
void free () noexcept
 Free allocated memory.
 
bool resize (size_type nSymbols, size_type nAlign, string_resize_type eType) noexcept
 Resize string data. More...
 
size_type size () const noexcept
 Get string length. More...
 
size_type capacity () const noexcept
 Get capacity of string. More...
 
bool is_small () const noexcept
 Is string small and fits in the local buffer. More...
 

Detailed Description

template<class traits_t>
class qx::string_data< traits_t >

Represents string data.

Implements small string optimization

Template Parameters
traits_t- char traits.
See also
string_traits.h
Author
Khrapov
Date
8.11.2020

Definition at line 35 of file string_data.h.

Member Function Documentation

◆ capacity()

template<class traits_t >
string_data< traits_t >::size_type qx::string_data< traits_t >::capacity
noexcept

Get capacity of string.

Return values
-string capacity, can't be less than Traits::small_string_size()

Definition at line 106 of file string_data.inl.

◆ data()

template<class traits_t >
string_data< traits_t >::pointer qx::string_data< traits_t >::data
noexcept

Get string data: from buffer or from pointer.

Return values
-string pointer

Definition at line 14 of file string_data.inl.

◆ is_small()

template<class traits_t >
bool qx::string_data< traits_t >::is_small
noexcept

Is string small and fits in the local buffer.

Return values
-true if string is small and fits in the local buffer

Definition at line 115 of file string_data.inl.

◆ resize()

template<class traits_t >
bool qx::string_data< traits_t >::resize ( size_type  nSymbols,
size_type  nAlign,
string_resize_type  eType 
)
noexcept

Resize string data.

Parameters
nSymbols- new size
nAlign- align (if 16 then size 13->16 16->16 18->32)
eType- resize type
Return values
-true if memory alloc is successful

Definition at line 41 of file string_data.inl.

◆ size()

template<class traits_t >
string_data< traits_t >::size_type qx::string_data< traits_t >::size
noexcept

Get string length.

Return values
-string length

Definition at line 100 of file string_data.inl.


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