3#include "terminalpp/element.hpp"
5#include <boost/container_hash/hash.hpp>
8#include <initializer_list>
22 using elements_storage = std::vector<element>;
33 using iterator = elements_storage::iterator;
34 using const_iterator = elements_storage::const_iterator;
35 using reverse_iterator = elements_storage::reverse_iterator;
36 using const_reverse_iterator = elements_storage::const_reverse_iterator;
37 using difference_type = std::ptrdiff_t;
38 using size_type = std::size_t;
48 template <std::forward_iterator ForwardIterator>
50 : elements_(begin, end)
57 string(std::initializer_list<element>
const &
ilist);
111 [[
nodiscard]] const_iterator begin()
const;
123 [[
nodiscard]] const_reverse_iterator rbegin()
const;
133 [[
nodiscard]] const_iterator end()
const;
143 [[
nodiscard]] const_reverse_iterator rend()
const;
163 [[
nodiscard]] size_type max_size()
const;
196 string &operator+=(
string const &
rhs);
214 template <
class InputIterator>
240 string const &
lhs,
string const &
rhs)
noexcept =
default;
246 friend bool operator==(
string const &
lhs,
string const &
rhs);
253 return boost::hash_range(
str.elements_.begin(),
str.elements_.end());
257 elements_storage elements_;
266std::ostream &operator<<(std::ostream &out,
string const &text);
275inline namespace literals {
276inline namespace string_literals {
283 char const *text, ::terminalpp::string::size_type length);
290 char const *text, ::terminalpp::string::size_type length);
299struct hash<terminalpp::string>
302 using result_type = std::size_t;
304 [[nodiscard]] result_type operator()(
305 argument_type
const &str)
const noexcept
307 return hash_value(str);
A class that represents strings of elements.
Definition string.hpp:21
void insert(iterator pos, InputIterator range_begin, InputIterator range_end)
Inserts a range of elements at the iterator position.
Definition string.hpp:215
const_iterator cbegin()
Returns an iterator to the beginning of the string.
void swap(string &other) noexcept
Swaps the contents of this and another string.
friend string operator+(string lhs, element const &rhs)
Append operator.
Definition string.hpp:188
string(ForwardIterator &&begin, ForwardIterator &&end)
Range Constructor.
Definition string.hpp:49
friend auto operator<=>(string const &lhs, string const &rhs) noexcept=default
Relational operators for strings.
const_iterator cend()
Returns an iterator to the end of the string.
string()=default
Constructor.
friend string operator+(string lhs, string const &rhs)
Append operator.
Definition string.hpp:201
friend std::size_t hash_value(string const &str) noexcept
Hash function.
Definition string.hpp:251
A structure that carries around the presentation attributes of an ANSI element.
Definition attribute.hpp:17
A structure representing an ANSI graphics effect (e.g. intensity, underlining)
Definition effect.hpp:27
constexpr effect() noexcept
Initialises the intensity to the default (normal) value.
Definition effect.hpp:31
A structure that represents the fundamental printable element of a terminal screen,...
Definition element.hpp:20