Method Remove
Remove(T)
Declaration
bool Remove(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item |
Returns
Type | Description |
---|---|
System.Boolean |
Remove()
Remove one item from the list: from the front if
FIFO
is true, else from the back.
NoSuchItemException if this list is empty.
Declaration
T Remove()
Returns
Type | Description |
---|---|
T | The removed item. |