Select Git revision
SchemeModule.cpp
-
Stéphane Del Pino authored
Also one can now define tuples (which are viewed in the mathematical sense: these are lists of elements of the same type). As a proof of concept one can now define lists of boundary conditions objects or pass lists to builtin functions (namely to module functions).
Stéphane Del Pino authoredAlso one can now define tuples (which are viewed in the mathematical sense: these are lists of elements of the same type). As a proof of concept one can now define lists of boundary conditions objects or pass lists to builtin functions (namely to module functions).
UtilsModule.hpp 338 B
#ifndef UTILS_MODULE_HPP
#define UTILS_MODULE_HPP
#include <language/modules/BuiltinModule.hpp>
class UtilsModule : public BuiltinModule
{
public:
std::string_view
name() const final
{
return "utils";
}
void registerOperators() const final;
UtilsModule();
~UtilsModule() = default;
};
#endif // UTILS_MODULE_HPP