YAMP.BaseFunction.Perform C# (CSharp) Method

Perform() public method

Invokes the function.
public Perform ( ParseContext context, Value argument ) : Value
context ParseContext The context of the invocation.
argument Value The function's argument(s).
return Value
        public virtual Value Perform(ParseContext context, Value argument)
        {
            return Perform(argument);
        }

Same methods

BaseFunction::Perform ( Value argument ) : Value