bang |
|
In any inlet: Sends out all stored messages immediately. |
int |
input [int]
|
In any inlet: The input is stored in the location corresponding to that inlet, and causes anything previously stored to be sent out its corresponding outlet. If no message has yet been received in a particular inlet, 0 is sent out of the corresponding outlet. |
float |
input [float]
|
In any inlet: The input is stored in the location corresponding to that inlet, and causes anything previously stored to be sent out its corresponding outlet. If no message has yet been received in a particular inlet, 0 is sent out of the corresponding outlet. |
list |
input [list]
|
In any inlet: The elements of the list are parsed among the inlets. The first element in the list is sent out the outlet which corresponds to the inlet which received the list and each subsequent element in the list is sent out each subsequent outlet. If there are more items in the list than outlets to pass them through, those items are simply dropped. By using the symbol "n" as a second argument, bondo is able to synchronize lists which arrive in different inlets. |
anything |
input [list]
|
In any inlet: The input is stored in the location corresponding to that inlet, and causes anything previously stored to be sent out its corresponding outlet. If no message has yet been received in a particular inlet, 0 is sent out of the corresponding outlet. |
set |
input [list]
|
In any inlet: The word set, followed by any message, stores the input in the location corresponding to that inlet without triggering any output. |