19 lines
245 B
C++
19 lines
245 B
C++
#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);
|