| Did you know ... | Search Documentation: |
| object->send_vector |
->send_vector
supports the implementation of methods with variable argument list. Its
format is:
unchecked..., Vector, [shift]
First, a list is created containing the following arguments:
unchecked...Next, the first element of this list is used as the selector and the remaining arguments as the arguments to the message. Examples:
vector(write_ln, 'Hello World')).vector('Hello World')).
Defaults: Shift defaults to 0.
Diagnostics: Fails silently if the selector cannot be created,
->forward_vector ->send_super_vector <-get_vector