| Did you know ... | Search Documentation: |
| class-delegate |
<-delegate
consists of instance variable
objects that should be used for delegation. The PCE message passing
system will try to forward an incoming message to the values of these
instance variables after it failed to locate an implementation at the
object or class level. The elements of this chain are tried in the order
they appear in the chain.
class ->delegateAdds a variable at the end class ->prepend_delegateAdds a variable at the start
See also class<-send_method
and class<-get_method.