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

Method call

include/sol/wrapper.hpp:44–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42
43 template <typename... Args>
44 static decltype(auto) call(F& f, Args&&... args) {
45 return f(std::forward<Args>(args)...);
46 }
47
48 struct caller {
49 template <typename... Args>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected