When srfi-133 vector-fold is given multiple vectors, it scans each
from left to right, stops at the end of the shortest. For vector-fold-right,
it just say "Similar to vector-fold, but it iterates right to left instead of left to right."
In multiple vector argument case with different lengths, it can be interpreted in
two ways:
1. Take each vector's last element, then one before the last element, and so on.
2. Let len be the length of the shortest vector. Take each vector's (len-1)th element,
then (len-2)th element, and so on.
The srfi-133 reference implementation adopts 2. For srfi-160 PR I followed it.
Does anybody think it should be 1? Since srfi-133 document isn't explicit,
we may be able to treat the current behavior as reference implementation's bug.
If 2 is ok, I'll make it explicit in the srfi-160 document to avoid further confusion.