SeqAn3 3.4.0-rc.3
The Modern C++ library for sequence analysis.
|
Implements a small string that can be used for compile time computations. More...
#include <seqan3/utility/container/small_string.hpp>
Public Member Functions | |
Constructors, destructor and assignment | |
template<size_t N> | |
constexpr | small_string (char const (&_lit)[N]) noexcept |
Construction from literal. | |
constexpr | small_string (char const c) noexcept |
Construction from char. | |
template<size_t N> | |
constexpr small_string & | operator= (char const (&_lit)[N]) noexcept |
Assign from literal. | |
template<size_t N> | |
constexpr void | assign (char const (&_lit)[N]) noexcept |
Assign from literal. | |
template<std::forward_iterator begin_it_type, typename end_it_type > requires std::sentinel_for<end_it_type, begin_it_type> && std::constructible_from<value_type, std::iter_reference_t<begin_it_type>> | |
constexpr void | assign (begin_it_type begin_it, end_it_type end_it) noexcept |
Assign from pair of iterators. | |
Modifiers | |
constexpr void | clear () noexcept |
Removes all elements from the container. | |
constexpr void | push_back (char const value) noexcept |
Appends the given element value to the end of the container. | |
constexpr void | pop_back () noexcept |
Removes the last element of the container. | |
constexpr void | resize (size_type const count) noexcept |
Resizes the container to contain count elements. | |
constexpr void | resize (size_type const count, char const value) noexcept |
Resizes the container to contain count elements. | |
constexpr small_string & | erase (size_type index=0, size_type count=max_size()) noexcept |
Removes specified elements from the container. | |
Conversion | |
std::string | str () const |
Returns the content represented as std::string. | |
constexpr char const * | c_str () const noexcept |
Returns the content represented as 0-terminated c-style string. | |
operator std::string () const | |
Implicit conversion to std::string which delegates to seqan3::small_string::str(). | |
constexpr | operator std::string_view () const noexcept |
Implicit conversion to std::string_view. | |
Public Member Functions inherited from seqan3::small_vector< char, capacity_+1 > | |
constexpr | small_vector () noexcept=default |
Defaulted. | |
constexpr | small_vector (small_vector const &) noexcept=default |
Defaulted. | |
constexpr | small_vector (small_vector &&) noexcept=default |
Defaulted. | |
constexpr | small_vector (std::array< value_type, capacity_ > const &array) noexcept(is_noexcept) |
Construct from an (smaller or equally sized) array over the same value type. | |
constexpr | small_vector (value_type const(&array)[capacity2]) noexcept(is_noexcept) |
Construct from a (smaller or equally sized) built in array over the same value type. | |
constexpr | small_vector (other_value_type... args) noexcept(is_noexcept) |
Construct from a list of values of value_type. | |
constexpr | small_vector (begin_it_type begin_it, end_it_type end_it) noexcept(is_noexcept) |
Construct from two iterators. | |
constexpr | small_vector (other_range_t &&range) noexcept(is_noexcept) |
Construct from a different range. | |
constexpr | small_vector (size_type n, value_type value) noexcept(is_noexcept) |
Construct with n times value . | |
constexpr small_vector & | operator= (small_vector const &) noexcept=default |
Defaulted. | |
constexpr small_vector & | operator= (small_vector &&) noexcept=default |
Defaulted. | |
constexpr small_vector & | operator= (std::initializer_list< value_type > ilist) noexcept(is_noexcept) |
Assign from std::initializer_list . | |
~small_vector () noexcept=default | |
Defaulted. | |
constexpr void | assign (std::initializer_list< value_type > ilist) noexcept(is_noexcept) |
Assign from std::initializer_list . | |
constexpr void | assign (size_type const count, value_type const value) noexcept(is_noexcept) |
Assign with count times value . | |
constexpr void | assign (other_range_t &&range) noexcept(is_noexcept) |
Assign from a different range. | |
constexpr void | assign (begin_it_type begin_it, end_it_type end_it) noexcept(is_noexcept) |
Assign from pair of iterators. | |
constexpr iterator | begin () noexcept |
Returns the begin to the string. | |
constexpr const_iterator | begin () const noexcept |
Returns the begin to the string. | |
constexpr const_iterator | cbegin () const noexcept |
Returns the begin to the string. | |
constexpr iterator | end () noexcept |
Returns iterator past the end of the vector. | |
constexpr const_iterator | end () const noexcept |
Returns iterator past the end of the vector. | |
constexpr const_iterator | cend () const noexcept |
Returns iterator past the end of the vector. | |
reference | at (size_type const i) |
Return the i-th element. | |
const_reference | at (size_type const i) const |
Return the i-th element. | |
constexpr reference | operator[] (size_type const i) noexcept |
Return the i-th element. | |
constexpr const_reference | operator[] (size_type const i) const noexcept |
Return the i-th element. | |
constexpr reference | front () noexcept |
Return the first element. Calling front on an empty container is undefined. | |
constexpr const_reference | front () const noexcept |
Return the first element. Calling front on an empty container is undefined. | |
constexpr reference | back () noexcept |
Return the last element. | |
constexpr const_reference | back () const noexcept |
Return the last element. | |
constexpr value_type * | data () noexcept |
Direct access to the underlying array. | |
constexpr value_type const * | data () const noexcept |
Direct access to the underlying array. | |
constexpr bool | empty () const noexcept |
Checks whether the container is empty. | |
constexpr size_type | size () const noexcept |
Returns the number of elements in the container, i.e. std::distance(begin(), end()). | |
constexpr size_type | max_size () const noexcept |
Returns the maximum number of elements the container is able to hold and resolves to capacity_ . | |
constexpr size_type | capacity () const noexcept |
Returns the number of elements that the container is able to hold and resolves to capacity_ . | |
constexpr void | reserve (size_type) const noexcept |
Since the capacity is fixed on compile time, this is a no-op. | |
constexpr void | shrink_to_fit () const noexcept |
Since the capacity is fixed on compile time, this is a no-op. | |
constexpr void | clear () noexcept |
Removes all elements from the container. | |
constexpr iterator | insert (const_iterator pos, value_type const value) noexcept(is_noexcept) |
Inserts value before position in the container. | |
constexpr iterator | insert (const_iterator pos, size_type const count, value_type const value) noexcept(is_noexcept) |
Inserts count copies of value before position in the container. | |
constexpr iterator | insert (const_iterator pos, begin_it_type begin_it, end_it_type end_it) noexcept(is_noexcept) |
Inserts elements from range [begin_it, end_it) before position in the container. | |
constexpr iterator | insert (const_iterator pos, std::initializer_list< value_type > const &ilist) noexcept(is_noexcept) |
Inserts elements from initializer list before position in the container. | |
constexpr iterator | erase (const_iterator begin_it, const_iterator end_it) noexcept |
Removes specified elements from the container. | |
constexpr iterator | erase (const_iterator pos) noexcept |
Removes specified elements from the container. | |
constexpr void | push_back (value_type const value) noexcept |
Appends the given element value to the end of the container. | |
constexpr void | pop_back () noexcept |
Removes the last element of the container. | |
constexpr void | resize (size_type const count) noexcept |
Resizes the container to contain count elements. | |
constexpr void | resize (size_type const count, value_type const value) noexcept |
Resizes the container to contain count elements. | |
constexpr void | swap (small_vector &rhs) noexcept(is_noexcept) |
Swap contents with another instance. | |
constexpr void | swap (small_vector &&rhs) noexcept(is_noexcept) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
Static Public Member Functions | |
Capacity | |
static constexpr size_type | max_size () noexcept |
Returns the maximal size which equals the capacity. | |
static constexpr size_type | capacity () noexcept |
Returns the maximal capacity. | |
Friends | |
Concatenation | |
template<size_t capacity2> | |
constexpr friend small_string< capacity_+capacity2 > | operator+ (small_string const &lhs, small_string< capacity2 > const &rhs) noexcept |
Concatenates two small_strings by returning a new small_string. | |
Input/output | |
std::ostream & | operator<< (std::ostream &os, small_string const &str) |
Formatted output for the seqan3::small_string. | |
std::istream & | operator>> (std::istream &is, small_string &str) |
Formatted input for the seqan3::small_string. | |
Comparison operators |
Related Symbols | |
(Note that these are not member symbols.) | |
Deduction guides | |
template<size_t N> | |
small_string (char const(&)[N]) -> small_string< N - 1 > | |
Deduces small_string from string literals. | |
template<size_t N> | |
small_string (std::array< char, N > const &) -> small_string< N > | |
Deduces small_string from std::array of type char. | |
small_string (char const) -> small_string< 1 > | |
Deduces small_string from char. | |
Additional Inherited Members | |
Public Types inherited from seqan3::small_vector< char, capacity_+1 > | |
using | value_type = char |
The value_type type. | |
using | reference = value_type & |
The reference type. | |
using | const_reference = value_type const & |
The const_reference type. | |
using | iterator = value_type * |
The iterator type. | |
using | const_iterator = value_type const * |
The const_iterator type. | |
using | difference_type = ptrdiff_t |
The difference_type type. | |
using | size_type = detail::min_viable_uint_t< capacity_ > |
The size_type type. | |
Implements a small string that can be used for compile time computations.
capacity_ | The capacity of the small string. |
This class provides a string type for small strings and compile-time contexts. It has fixed capacity, but variable size within the capacity. It is always allocated on the stack and most of it's members are constexpr
-qualified. The underlying data can be exposed as a null-terminated c-style string (without copying) and conversion operators to std::string are provided (this involves copying).
Internally the string stores a null-terminated array of size capacity_ + 1
and the size of the string as a member. The smallest possible type is used for storage of the size. For example, small_string<30>
uses 32bytes of memory (one byte extra for the null-terminator and one byte to save the size).
Usage:
|
inlineconstexprnoexcept |
Construction from literal.
_lit | The literal to construct the string for. |
The char
literal is expected to be null-terminated (asserted in debug-mode). If it is not, the last character will be lost when copying to the instance of small_string
.
No-throw guarantee.
|
inlineexplicitconstexprnoexcept |
Construction from char.
c | The character to construct the small_string for. |
No-throw guarantee.
|
inlineconstexprnoexcept |
Assign from pair of iterators.
begin_it_type | Must satisfy std::forward_iterator and the value_type must be constructible from the reference type of begin_it_type. |
end_it_type | Must satisfy std::sentinel_for. |
[in] | begin_it | Begin of range to construct/assign from. |
[in] | end_it | End of range to construct/assign from. |
Linear in the distance between begin_it
and end_it
.
No-throw guarantee if value_type is std::is_nothrow_copy_constructible.
|
inlineconstexprnoexcept |
Assign from literal.
_lit | The literal to assign the string from. |
The char
literal is expected to be null-terminated (asserted in debug-mode). If it is not, the last character will be lost when copying to the instance of small_string
.
Linear in the size of _lit.
No-throw guarantee.
|
inlineconstexprnoexcept |
Returns the content represented as 0-terminated c-style string.
char const *
The stored string.No-throw guarantee.
Constant.
|
inlinestaticconstexprnoexcept |
Returns the maximal capacity.
|
inlineconstexprnoexcept |
Removes all elements from the container.
Constant.
No-throw guarantee.
|
inlineconstexprnoexcept |
Removes specified elements from the container.
index | Remove the elements starting at index . Defaults to 0 . |
count | The number of elements to remove. Defaults to max_size() . |
*this
Invalidates iterators and references at or after the point of the erase, including the end() iterator.
The iterator pos
must be valid and dereferenceable. Thus the end() iterator (which is valid, but is not dereferencable) cannot be used as a value for pos.
Linear in size().
No-throw guarantee.
|
inlinestaticconstexprnoexcept |
Returns the maximal size which equals the capacity.
|
inline |
Implicit conversion to std::string which delegates to seqan3::small_string::str().
Strong exception guarantee. No data is modified.
Linear in the size of the string.
|
inlineconstexprnoexcept |
Implicit conversion to std::string_view.
It is the programmer's responsibility to ensure that the resulting string view does not outlive the string.
Strong exception guarantee. No data is modified.
Constant.
|
inlineconstexprnoexcept |
Assign from literal.
_lit | The literal to assign the string from. |
The char
literal is expected to be null-terminated (asserted in debug-mode). If it is not, the last character will be lost when copying to the instance of small_string
.
Linear in the size of _lit.
No-throw guarantee.
|
inlineconstexprnoexcept |
Removes the last element of the container.
Calling pop_back() on an empty container is undefined. In debug mode an assertion will be thrown.
No iterators or references except for back() and end() are invalidated.
Constant.
No-throw guarantee.
|
inlineconstexprnoexcept |
Appends the given element value to the end of the container.
value | The value to append. |
If the new size() is greater than capacity() this is undefined behaviour.
Constant.
No-throw guarantee.
|
inlineconstexprnoexcept |
Resizes the container to contain count elements.
[in] | count | The new size. |
If count is greater than capacity this is undefined behaviour.
Constant.
No-throw guarantee.
|
inlineconstexprnoexcept |
Resizes the container to contain count elements.
value | Append copies of value when resizing. | |
[in] | count | The new size. |
If count is greater than capacity this is undefined behaviour.
Constant.
No-throw guarantee.
|
inline |
Returns the content represented as std::string.
std::string
The stored string.Strong exception guarantee. No data is modified.
Linear in the size of the string.
|
friend |
Concatenates two small_strings by returning a new small_string.
lhs | The left-hand-side to concat with. |
rhs | The right-hand-side to concat with. |
small_string<capacity_ + capacity2>
The new small_string with size capacity_
+ capacity2
.No-throw guarantee.
Linear in the size of the strings.
|
friend |
Formatted output for the seqan3::small_string.
[in,out] | os | The std::basic_ostream to write to. |
[in] | str | The seqan3::small_string to read from. |
os
.Internally calls os << str.str()
.
|
friend |
Formatted input for the seqan3::small_string.
[in,out] | is | The std::basic_istream to read from. |
[out] | str | The seqan3::small_string to write to. |
is
.Reads at most seqan3::small_string::max_size characters from the stream. If a stream error occurred or no characters could be extracted the std::ios_base::failbit is set. This may throw an exception.
|
related |
Deduces small_string from string literals.
|
related |
Deduces small_string from char.
|
related |
Deduces small_string from std::array of type char.