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

Function overload_match_arity_single

extlibs/sol3/include/sol/sol.hpp:16127–16137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16125
16126 template <std::size_t... M, typename Match, typename... Args>
16127 inline int overload_match_arity_single(
16128 types<>, std::index_sequence<>, std::index_sequence<M...>, Match&& matchfx, lua_State* L, int fxarity, int start, Args&&... args) {
16129 return overload_match_arity(types<>(),
16130 std::index_sequence<>(),
16131 std::index_sequence<M...>(),
16132 std::forward<Match>(matchfx),
16133 L,
16134 fxarity,
16135 start,
16136 std::forward<Args>(args)...);
16137 }
16138
16139 template <typename Fx, std::size_t I, std::size_t... M, typename Match, typename... Args>
16140 inline int overload_match_arity_single(

Callers 1

overload_match_arityFunction · 0.85

Calls 2

overload_match_arityFunction · 0.85
check_typesFunction · 0.85

Tested by

no test coverage detected