peek method

dynamic peek()

Returns the item with the highest priority without removal.

Implementation

peek() {
	return data[ 0 ];
}