class IO::Event::PriorityHeap

def peek

@returns [Object | Nil] the smallest element in the heap without removing it, or nil if the heap is empty.
def peek
	@contents[0]
end