class Async::Container::Generic

def mark?(key)

Mark the container's keyed instance which ensures that it won't be discarded.
def mark?(key)
	if key
		if value = @keyed[key]
			value.mark!
			
			return true
		end
	end
	
	return false
end