class Async::List

def shift

def shift
	if node = first
		remove!(node)
	end
end