public Function5Args(EvaluatableParamters p, Func <T, T, T, T, T, T> function) : base(p) { _func = function; }
protected BaseEvaluatable(EvaluatableParamters p, Func <T, T> unaryFunc = null) : this(p.Symbol, p.Precedence, p.Associativity, p.InputArgs, p.SpecialUnary, unaryFunc) { }
public Operator1Arg(EvaluatableParamters p, Func <T, T> function) : base(p) { _func = function; }
protected BaseFunction(EvaluatableParamters p) : base(p) { }
public Operator2Args(EvaluatableParamters p, Func <T, T, T> function, Func <T, T> unaryFunc = null) : base(p, unaryFunc) { _func = (arg1, arg2) => Associativity == Associativity.L ? function(arg2, arg1) : function(arg1, arg2); }