| 317 | |
| 318 | template <std::size_t... I, bool b, typename... Ret> |
| 319 | auto invoke(types<Ret...>, std::index_sequence<I...>, std::ptrdiff_t n, detail::protected_handler<b, handler_t>& h) const { |
| 320 | luacall(n, sizeof...(Ret), h); |
| 321 | return stack::pop<std::tuple<Ret...>>(lua_state()); |
| 322 | } |
| 323 | |
| 324 | template <std::size_t I, bool b, typename Ret> |
| 325 | Ret invoke(types<Ret>, std::index_sequence<I>, std::ptrdiff_t n, detail::protected_handler<b, handler_t>& h) const { |
nothing calls this directly
no test coverage detected