10 struct MakeFromTupleFunction {
11 template<concepts::TupleLike Tup>
12 constexpr auto operator()(Tup&& tuple)
const -> T
15 []<
typename... Args>(Args&&... args) {
16 return T(util::forward<Args>(args)...);
18 util::forward<Tup>(tuple));
22 []<
typename... Args>(Args&&... args) {
23 return T(util::forward<Args>(args)...);
25 util::forward<Tup>(tuple));
constexpr auto make_from_tuple
Definition make_from_tuple.h:31
constexpr auto apply(F &&f, Tup &&tuple) -> decltype(detail::apply_impl(meta::MakeIndexSequence< meta::TupleSize< Tup > > {}, util::forward< F >(f), util::forward< Tup >(tuple)))
Definition apply.h:22
Definition any_storable.h:9