class Async::List::Iterator

def remove!

def remove!
	@head.tail = @tail
	@tail.head = @head
	@head = nil
	@tail = nil
	@list = nil
end