| 26 | // std::make_tuple<int, bool>(read<int>(ctx, 0), read<bool>(ctx, 1)) |
| 27 | template<typename... Args, size_t... Indexes> |
| 28 | typename ArgsTuple<Args...>::type get_stack_values_helper(duk_context* ctx, dukglue::detail::index_tuple<Indexes...>) |
| 29 | { |
| 30 | using namespace dukglue::types; |
| 31 | return std::forward_as_tuple(DukType<typename Bare<Args>::type>::template read<typename ArgStorage<Args>::type>(ctx, Indexes)...); |
| 32 | } |
| 33 | |
| 34 | // Returns an std::tuple of the values asked for in the template parameters. |
| 35 | // Values will remain on the stack. |
nothing calls this directly
no outgoing calls
no test coverage detected