MCPcopy Create free account
hub / github.com/ThePhD/sol2 / stack_proxy

Class stack_proxy

include/sol/stack_proxy.hpp:30–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28
29namespace sol {
30 struct stack_proxy : public stack_proxy_base {
31 public:
32 stack_proxy() : stack_proxy_base() {
33 }
34 stack_proxy(lua_State* L, int index) : stack_proxy_base(L, index) {
35 }
36
37 template <typename... Ret, typename... Args>
38 decltype(auto) call(Args&&... args);
39
40 template <typename... Args>
41 decltype(auto) operator()(Args&&... args) {
42 return call<>(std::forward<Args>(args)...);
43 }
44 };
45
46 namespace stack {
47 template <>

Callers 1

getMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected