chickadee » srfi-133 » vector-skip-right

vector-skip-right pred? vec1 vec2 ...procedure

Like vector-skip, but it searches for a non-matching element right-to-left, rather than left-to-right, and it is an error if all of the vectors do not have the same length. This is equivalent to:

(vector-index-right (lambda (x1 x2 ...) (not (pred? x1 x1 ...)))
                          vec1 vec2 ...)