chickadee » srfi-132 » vector-merge

vector-merge < v₁ v₂ #!optional start₁ end₁ start₂ end₂procedure

This procedure does not alter its inputs, and returns a newly allocated vector of length (end₁ - start₁) + (end₂ - start₂).

This procedure is equivalent to the SRFI 95 merge procedure when applied to vectors, except that it does not accept a key procedure.