Class AbstractFunction

    • Constructor Detail

      • AbstractFunction

        protected AbstractFunction​(java.lang.String name,
                                   int numParams)
        Creates a new function with given name and parameter count.
        Parameters:
        name - The name of the function.
        numParams - The number of parameters for this function. -1 denotes a variable number of parameters.
      • AbstractFunction

        protected AbstractFunction​(java.lang.String name,
                                   int numParams,
                                   boolean booleanFunction)
        Creates a new function with given name and parameter count.
        Parameters:
        name - The name of the function.
        numParams - The number of parameters for this function. -1 denotes a variable number of parameters.
        booleanFunction - Whether this function is a boolean function.