| 1911 | |
| 1912 | template <typename T> |
| 1913 | LuaValue LuaUserDataConverter<T>::from(LuaEngine& engine, T t) { |
| 1914 | return engine.createUserData(std::move(t)); |
| 1915 | } |
| 1916 | |
| 1917 | template <typename T> |
| 1918 | Maybe<T> LuaUserDataConverter<T>::to(LuaEngine&, LuaValue const& v) { |
nothing calls this directly
no test coverage detected