IByteQueue.push

Pushes an item into the queue.

  1. void[] push(size_t size)
  2. bool push(void[] item)
    interface IByteQueue
    bool
    push
    (
    in void[] item
    )

Parameters

item void[]

data item to push

Return Value

Type: bool

true if the item was pushed successfully, false if it didn't fit

Meta