implements a FIFO pipe that merges lists (see self.put)
More...
implements a FIFO pipe that merges lists (see self.put)
- Note
- This class is only available in Python.
Definition at line 179 of file utils.py.
|
def | append |
| x must be a list and will be appended to the end of the pipe, dropping rightmost elements if necessary More...
|
|
def | get |
| returns the oldest element, without popping it out of the pipe. More...
|
|
def | put |
| If x is subscriptable, insert its contents at the beginning of the pipe. More...
|
|
def IMP.isd.utils.Pipe.append |
( |
|
self, |
|
|
|
x |
|
) |
| |
x must be a list and will be appended to the end of the pipe, dropping rightmost elements if necessary
Definition at line 204 of file utils.py.
def IMP.isd.utils.Pipe.get |
( |
|
self | ) |
|
returns the oldest element, without popping it out of the pipe.
Popping occurs in the put() method
Definition at line 211 of file utils.py.
def IMP.isd.utils.Pipe.put |
( |
|
self, |
|
|
|
x |
|
) |
| |
If x is subscriptable, insert its contents at the beginning of the pipe.
Else insert the element itself. If the pipe is full, drop the oldest element.
Definition at line 188 of file utils.py.
The documentation for this class was generated from the following file: