3inline const std::shared_ptr<ossia::curve_abstract>*
4behavior_variant_type::target()
const
7 return &m_impl.m_value0;
11inline const std::vector<ossia::behavior>* behavior_variant_type::target()
const
14 return &m_impl.m_value1;
18inline std::shared_ptr<ossia::curve_abstract>* behavior_variant_type::target()
21 return &m_impl.m_value0;
25inline std::vector<ossia::behavior>* behavior_variant_type::target()
28 return &m_impl.m_value1;
32inline const std::shared_ptr<ossia::curve_abstract>& behavior_variant_type::get()
const
35 return m_impl.m_value0;
36 throw std::runtime_error(
"behavior_variant: bad type");
39inline const std::vector<ossia::behavior>& behavior_variant_type::get()
const
42 return m_impl.m_value1;
43 throw std::runtime_error(
"behavior_variant: bad type");
46inline std::shared_ptr<ossia::curve_abstract>& behavior_variant_type::get()
49 return m_impl.m_value0;
50 throw std::runtime_error(
"behavior_variant: bad type");
53inline std::vector<ossia::behavior>& behavior_variant_type::get()
56 return m_impl.m_value1;
57 throw std::runtime_error(
"behavior_variant: bad type");
59template <
typename Visitor>
60auto apply_nonnull(Visitor&& functor,
const behavior_variant_type& var)
64 case behavior_variant_type::Type::Type0:
65 return functor(var.m_impl.m_value0);
66 case behavior_variant_type::Type::Type1:
67 return functor(var.m_impl.m_value1);
69 throw std::runtime_error(
"behavior_variant: bad type");
72template <
typename Visitor>
73auto apply_nonnull(Visitor&& functor, behavior_variant_type& var)
77 case behavior_variant_type::Type::Type0:
78 return functor(var.m_impl.m_value0);
79 case behavior_variant_type::Type::Type1:
80 return functor(var.m_impl.m_value1);
82 throw std::runtime_error(
"behavior_variant: bad type");
85template <
typename Visitor>
86auto apply_nonnull(Visitor&& functor, behavior_variant_type&& var)
90 case behavior_variant_type::Type::Type0:
91 return functor(std::move(var.m_impl.m_value0));
92 case behavior_variant_type::Type::Type1:
93 return functor(std::move(var.m_impl.m_value1));
95 throw std::runtime_error(
"behavior_variant: bad type");
98template <
typename Visitor>
99auto apply(Visitor&& functor,
const behavior_variant_type& var)
103 case behavior_variant_type::Type::Type0:
104 return functor(var.m_impl.m_value0);
105 case behavior_variant_type::Type::Type1:
106 return functor(var.m_impl.m_value1);
111template <
typename Visitor>
112auto apply(Visitor&& functor, behavior_variant_type& var)
116 case behavior_variant_type::Type::Type0:
117 return functor(var.m_impl.m_value0);
118 case behavior_variant_type::Type::Type1:
119 return functor(var.m_impl.m_value1);
124template <
typename Visitor>
125auto apply(Visitor&& functor, behavior_variant_type&& var)
129 case behavior_variant_type::Type::Type0:
130 return functor(std::move(var.m_impl.m_value0));
131 case behavior_variant_type::Type::Type1:
132 return functor(std::move(var.m_impl.m_value1));
138inline void behavior_variant_type::destruct_impl()
143 m_impl.m_value0.~shared_ptr();
146 m_impl.m_value1.~vector();
153inline int behavior_variant_type::which()
const
158inline behavior_variant_type::operator bool()
const
160 return m_type != npos;
163inline behavior_variant_type::behavior_variant_type()
168inline behavior_variant_type::~behavior_variant_type()
173inline behavior_variant_type::behavior_variant_type(
174 const std::shared_ptr<ossia::curve_abstract>& v)
177 new(&m_impl.m_value0) std::shared_ptr<ossia::curve_abstract>{v};
180inline behavior_variant_type::behavior_variant_type(
181 std::shared_ptr<ossia::curve_abstract>&& v)
184 new(&m_impl.m_value0) std::shared_ptr<ossia::curve_abstract>{std::move(v)};
187inline behavior_variant_type::behavior_variant_type(
188 const std::vector<ossia::behavior>& v)
191 new(&m_impl.m_value1) std::vector<ossia::behavior>{v};
194inline behavior_variant_type::behavior_variant_type(std::vector<ossia::behavior>&& v)
197 new(&m_impl.m_value1) std::vector<ossia::behavior>{std::move(v)};
200inline behavior_variant_type::behavior_variant_type(
const behavior_variant_type& other)
201 : m_type{other.m_type}
206 new(&m_impl.m_value0)
207 std::shared_ptr<ossia::curve_abstract>{other.m_impl.m_value0};
210 new(&m_impl.m_value1) std::vector<ossia::behavior>{other.m_impl.m_value1};
217inline behavior_variant_type::behavior_variant_type(
218 behavior_variant_type&& other) noexcept
219 : m_type{other.m_type}
224 new(&m_impl.m_value0)
225 std::shared_ptr<ossia::curve_abstract>{std::move(other.m_impl.m_value0)};
228 new(&m_impl.m_value1)
229 std::vector<ossia::behavior>{std::move(other.m_impl.m_value1)};
236inline behavior_variant_type&
237behavior_variant_type::operator=(
const behavior_variant_type& other)
240 m_type = other.m_type;
244 new(&m_impl.m_value0)
245 std::shared_ptr<ossia::curve_abstract>{other.m_impl.m_value0};
248 new(&m_impl.m_value1) std::vector<ossia::behavior>{other.m_impl.m_value1};
256inline behavior_variant_type&
257behavior_variant_type::operator=(behavior_variant_type&& other)
noexcept
260 m_type = other.m_type;
264 new(&m_impl.m_value0)
265 std::shared_ptr<ossia::curve_abstract>{std::move(other.m_impl.m_value0)};
268 new(&m_impl.m_value1)
269 std::vector<ossia::behavior>{std::move(other.m_impl.m_value1)};