3#include <ossia/detail/apply.hpp>
4#include <ossia/detail/small_vector.hpp>
5#include <ossia/editor/state/detail/state_execution_visitor.hpp>
12 using vec_type = ossia::small_vector<ossia::state_element, 16>;
13 using iterator =
typename vec_type::iterator;
14 using const_iterator =
typename vec_type::const_iterator;
15 ossia::small_vector<ossia::state_element, 16> m_children;
19 m_children.push_back(std::move(other));
22 void remove(const_iterator other)
noexcept { m_children.erase(other); }
24 void remove(
const state_element& e) { ossia::remove_erase(m_children, e); }
27 auto find(
const T& val)
noexcept
29 return ossia::find(m_children, val);
34 for(
auto& state : m_children)
36 ossia::apply(state_execution_visitor{}, std::move(state));
40 auto reserve(std::size_t n)
noexcept {
return m_children.reserve(n); }
41 auto clear() noexcept {
return m_children.clear(); }
42 auto begin() noexcept {
return m_children.begin(); }
43 auto end() noexcept {
return m_children.end(); }
44 auto begin() const noexcept {
return m_children.begin(); }
45 auto end() const noexcept {
return m_children.end(); }
47 auto size() const noexcept {
return m_children.size(); }
56 void remove(
const T& other)
63 return e ? &e :
nullptr;
66 auto end()
const {
return nullptr; }
69#if defined(OSSIA_SMALL_VECTOR)
void launch(state_element &e)
launch Launch a state_element
Definition state_element.cpp:18
ossia::nullable_variant< message, state, piecewise_message, piecewise_vec_message< 2 >, piecewise_vec_message< 3 >, piecewise_vec_message< 4 > > state_element
Definition state_element_fwd.hpp:28