AjErl.Language.Function.Apply C# (CSharp) Method

Apply() public method

public Apply ( Context context, IList arguments ) : object
context Context
arguments IList
return object
        public object Apply(Context context, IList<object> arguments)
        {
            return this.body.Evaluate(this.MakeContext(arguments));
        }