Split functions into many files, remove string from std.

This commit is contained in:
2018-09-01 23:19:28 -07:00
parent 3c949c9ed3
commit 22ac8ba2d0
13 changed files with 90 additions and 55 deletions

View 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);