Split functions into many files, remove string from std.
This commit is contained in:
18
include/operator_functions.hpp
Normal file
18
include/operator_functions.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
|
||||
#include "function_utils.hpp"
|
||||
|
||||
FUNCTION(plus);
|
||||
FUNCTION(minus);
|
||||
FUNCTION(times);
|
||||
FUNCTION(divide);
|
||||
FUNCTION(pow);
|
||||
|
||||
FUNCTION(lt);
|
||||
FUNCTION(lte);
|
||||
FUNCTION(equals);
|
||||
FUNCTION(gt);
|
||||
FUNCTION(gte);
|
||||
|
||||
FUNCTION(negate);
|
||||
FUNCTION(factorial);
|
||||
Reference in New Issue
Block a user