append Method

Pushes a value onto the back of the queue without making any attempt to enforce ordering. After using this function, you must manually invoke sort() to ensure the queue is sorted again.

append(value: T): T

Parameter Type Description
value T The value to append

Returns - The appended value, cloned according to the CloneFunction supplied to this queue's constructor.

Defined in

Last Updated: 08 January, 2020