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

Function interop_check

include/sol/stack_core.hpp:770–777  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

768
769 template <typename T, typename Handler>
770 bool interop_check(lua_State* L, int index, type index_type, Handler&& handler, record& tracking) {
771 if constexpr (meta::meta_detail::is_adl_sol_lua_interop_check_v<T>) {
772 return sol_lua_interop_check(types<T>(), L, index, index_type, std::forward<Handler>(handler), tracking);
773 }
774 else {
775 return unqualified_interop_check<T>(L, index, index_type, std::forward<Handler>(handler), tracking);
776 }
777 }
778
779 using undefined_method_func = void (*)(stack_reference);
780

Callers

nothing calls this directly

Calls 1

sol_lua_interop_checkFunction · 0.50

Tested by

no test coverage detected