C# Class AjTalk.Language.FunctionalMethod

Inheritance: IMethod
Mostrar archivo Open project: ajlopez/AjTalk Class Usage Examples

Public Methods

Method Description
Execute ( System.Machine machine, IObject self, IObject receiver, object args ) : object
Execute ( System.Machine machine, IObject self, object args ) : object
Execute ( System.Machine machine, object args ) : object
ExecuteInInterpreter ( Interpreter interpreter, IObject self, object args ) : object
ExecuteInInterpreter ( Interpreter interpreter, object args ) : object
ExecuteNative ( System.Machine machine, object self, object args ) : object
ExecuteNativeInInterpreter ( Interpreter interpreter, object self, object args ) : object
FunctionalMethod ( Func function ) : System
FunctionalMethod ( Func nativeFunction ) : System
FunctionalMethod ( string name, IBehavior classDescription, Func function ) : System
FunctionalMethod ( string name, IBehavior classDescription, Func nativeFunction ) : System

Method Details

Execute() public method

public Execute ( System.Machine machine, IObject self, IObject receiver, object args ) : object
machine System.Machine
self IObject
receiver IObject
args object
return object

Execute() public method

public Execute ( System.Machine machine, IObject self, object args ) : object
machine System.Machine
self IObject
args object
return object

Execute() public method

public Execute ( System.Machine machine, object args ) : object
machine System.Machine
args object
return object

ExecuteInInterpreter() public method

public ExecuteInInterpreter ( Interpreter interpreter, IObject self, object args ) : object
interpreter Interpreter
self IObject
args object
return object

ExecuteInInterpreter() public method

public ExecuteInInterpreter ( Interpreter interpreter, object args ) : object
interpreter Interpreter
args object
return object

ExecuteNative() public method

public ExecuteNative ( System.Machine machine, object self, object args ) : object
machine System.Machine
self object
args object
return object

ExecuteNativeInInterpreter() public method

public ExecuteNativeInInterpreter ( Interpreter interpreter, object self, object args ) : object
interpreter Interpreter
self object
args object
return object

FunctionalMethod() public method

public FunctionalMethod ( Func function ) : System
function Func
return System

FunctionalMethod() public method

public FunctionalMethod ( Func nativeFunction ) : System
nativeFunction Func
return System

FunctionalMethod() public method

public FunctionalMethod ( string name, IBehavior classDescription, Func function ) : System
name string
classDescription IBehavior
function Func
return System

FunctionalMethod() public method

public FunctionalMethod ( string name, IBehavior classDescription, Func nativeFunction ) : System
name string
classDescription IBehavior
nativeFunction Func
return System