Method ADT.CircularList()->push_front()
- Method
push_front
voidpush_front(ValueTypevalue,bool|voidforce)- Description
Add a new value at the front of the list.
- Parameter
value The value to add.
- Parameter
force Add the value even if the list is full, in which case the element at the back of the list will be removed.
- Throws
An error if the list is full and
forceis false.- Note
forcewas not supported in Pike 8.0.1800 and earlier.- Note
This is the same operation as add().
- See also