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

Function property

extlibs/sol3/include/sol/sol.hpp:15860–15869  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15858
15859 template <typename F, typename G>
15860 inline decltype(auto) property(F&& f, G&& g) {
15861 typedef lua_bind_traits<meta::unqualified_t<F>> left_traits;
15862 typedef lua_bind_traits<meta::unqualified_t<G>> right_traits;
15863 if constexpr (left_traits::free_arity < right_traits::free_arity) {
15864 return property_wrapper<std::decay_t<F>, std::decay_t<G>>(std::forward<F>(f), std::forward<G>(g));
15865 }
15866 else {
15867 return property_wrapper<std::decay_t<G>, std::decay_t<F>>(std::forward<G>(g), std::forward<F>(f));
15868 }
15869 }
15870
15871 template <typename F>
15872 inline decltype(auto) property(F&& f) {

Callers 6

LoadClassGameObjectFunction · 0.85
LoadClassTextFunction · 0.85
LoadClassEngineFunction · 0.85
LoadClassPolygonPointFunction · 0.85
LoadClassPolygonSegmentFunction · 0.85
LoadClassRectFunction · 0.85

Calls 1

no_propClass · 0.85

Tested by

no test coverage detected