| 7 | namespace obe::Utils::Vector::Bindings |
| 8 | { |
| 9 | void LoadFunctionContains(sol::state_view state) |
| 10 | { |
| 11 | sol::table VectorNamespace = state["obe"]["Utils"]["Vector"].get<sol::table>(); |
| 12 | VectorNamespace.set_function("obe::Utils::Vector::contains", |
| 13 | sol::overload(static_cast<bool (*)(int, const std::vector<int>&)>( |
| 14 | obe::Utils::Vector::contains), |
| 15 | static_cast<bool (*)(double, const std::vector<double>&)>( |
| 16 | obe::Utils::Vector::contains), |
| 17 | static_cast<bool (*)(std::string, const std::vector<std::string>&)>( |
| 18 | obe::Utils::Vector::contains), |
| 19 | static_cast<bool (*)(bool, const std::vector<bool>&)>( |
| 20 | obe::Utils::Vector::contains))); |
| 21 | } |
| 22 | void LoadFunctionJoin(sol::state_view state) |
| 23 | { |
| 24 | sol::table VectorNamespace = state["obe"]["Utils"]["Vector"].get<sol::table>(); |
nothing calls this directly
no test coverage detected