Example List send 020
|
Notes and Hints Dissecting the send command involves understanding the methods dictionary
of any Analytic Information Server type. In general the send command is translated
as a reference into the methods dictionary: ((ref (methodsOf (type object)) methodName object)) The statement : (send IncAll: P) is translated into ((ref (methodsOf (type P)) IncAll: ) P) Each statement segment results in:
Returns:
Returns:
Returns:
Returns:
Returns:
Returns:
Returns:
Returns:
(type P)
Returns: List (methodsOf (List:))
Returns: #<Dictionary 123456> (ref (#<Dictionary 123456>) IncAll: )
Returns: #<Lambda 123456> ( #<Lambda 123456> monthlyBills)
Returns: 3200
Here are examples of the addMethod function at work.
Here is the link to the current function used in this example.
Here are a number of links to other related functions.
defmethod(#void) | send(#void) | methodsOf(#void) |
Here are the links to the data types of the arguments used in this example. Here are a number of links to examples having similar argument types.
Dictionary
Symbol
Analytic Information Server (AIS)AIS Component Systems
|