MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / call

Method call

extlibs/sol3/include/sol/sol.hpp:18775–18778  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18773namespace sol {
18774 template <typename... Ret, typename... Args>
18775 decltype(auto) stack_proxy::call(Args&&... args) {
18776 stack_function sf(this->lua_state(), this->stack_index());
18777 return sf.template call<Ret...>(std::forward<Args>(args)...);
18778 }
18779
18780 inline protected_function_result::protected_function_result(unsafe_function_result&& o) noexcept
18781 : L(o.lua_state()), index(o.stack_index()), returncount(o.return_count()), popcount(o.return_count()), err(o.status()) {

Callers 15

runMethod · 0.45
makeCallbackFunction · 0.45
executeMethod · 0.45
callMethod · 0.45
callMethod · 0.45
callMethod · 0.45
callMethod · 0.45
callMethod · 0.45
operator()Method · 0.45
operator()Method · 0.45
callMethod · 0.45
callMethod · 0.45

Calls 2

lua_stateMethod · 0.45
stack_indexMethod · 0.45

Tested by

no test coverage detected