bang |
|
All stored values are sent out, but their position is not shifted. |
int |
input [int]
|
The numbers currently stored in bucket are sent out, then each number is moved one outlet to the right and the new number is stored to be sent out the left outlet the next time a number is received. |
float |
input [float]
|
The numbers currently stored in bucket are sent out, then each number is moved one outlet to the right and the new number is stored to be sent out the left outlet the next time a number is received. |
L2R |
|
Sets bucket to shift its stored values from left to right (the default) whenever it receives a number in its inlet. |
R2L |
|
Sets bucket to shift its stored values from right to left whenever it receives a number in its inlet, placing the incoming number in the rightmost outlet. |
freeze |
|
Suspends the bucket output, but new incoming numbers continue to shift the stored values internally. |
l2r |
|
Sets bucket to shift its stored values from left to right (the default) whenever it receives a number in its inlet. |
set |
input [list]
|
The word set, followed by a number, sends that number out each outlet, and stores the number as the next value to be sent out each of its outlets. |
r2l |
|
Sets bucket to shift its stored values from right to left whenever it receives a number in its inlet, placing the incoming number in the rightmost outlet. |
roll |
|
The word roll, followed by any number, causes bucket to use the value stored in its rightmost outlet as input; thus, it sends its output, shifts all stored values to the right, then stores the value which had been in the rightmost outlet in the leftmost outlet (as if it had been received in the inlet). |
thaw |
|
Resumes bucket output. |