abcs/include/operator_functions.hpp

19 lines
245 B
C++
Raw Permalink Normal View History

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