package vals

// Feed calls the function with given values, breaking earlier if the function
// returns false.
func ( func(interface{}) bool,  ...interface{}) {
	for ,  := range  {
		if !() {
			break
		}
	}
}