QueueIfc

Properties

Link copied to clipboard
abstract val isEmpty: Boolean

Returns whether the queue is empty.

Link copied to clipboard
abstract val isNotEmpty: Boolean

Returns true if the queue is not empty

Link copied to clipboard
abstract val size: Int

Gets the size (number of elements) of the queue.

Functions

Link copied to clipboard
abstract fun clear()

Removes all the elements from this collection

Link copied to clipboard
abstract operator fun contains(qObj: T): Boolean

Returns true if this queue contains the specified element. More formally, returns true if and only if this list contains at least one element e such that (o==null ? e==null : o.equals(e)).

Link copied to clipboard
abstract fun enqueue(qObject: T)

Places the QObject in the queue, with the specified priority Automatically, updates the number in queue response variable.

Link copied to clipboard
abstract operator fun iterator(): Iterator<T>
Link copied to clipboard
abstract fun peekNext(): T?

Returns a reference to the QObject representing the item that is next to be removed from the queue according to the queue discipline that was specified.

Link copied to clipboard
abstract fun removeNext(): T?

Removes the next item from the queue according to the queue discipline that was specified. Returns a reference to the QObject representing the item that was removed