Represents string data.
More...
#include <string_data.h>
|
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...
|
|
template<class traits_t>
class qx::string_data< traits_t >
Represents string data.
Implements small string optimization
- Template Parameters
-
- See also
- string_traits.h
- Author
- Khrapov
- Date
- 8.11.2020
Definition at line 35 of file string_data.h.
◆ capacity()
template<class traits_t >
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 >
Get string data: from buffer or from pointer.
- Return values
-
Definition at line 14 of file string_data.inl.
◆ is_small()
template<class traits_t >
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 >
The documentation for this class was generated from the following files: