vector-append - append vectors

LIBRARY

(import (scheme base))              ;R7RS

SYNOPSIS

(vector-append vector ...)

DESCRIPTION

Returns a newly allocated vector whose elements are the concatenation of the elements of the given vectors.

RETURN VALUES

Returns a single value which is a vector object.

EXAMPLES

(vector-append #(a b c) #(d e f))
        => #(a b c d e f)

COMPATIBILITY

The vector-append in SRFI-43 is identical to the one in R7RS.

ERRORS

[R7RS] It is an error if one of the arguments is not a vector. Implementations may signal an error, extend the procedure's domain of definition to include such arguments, or fail catastrophically.

SEE ALSO

append(3scm)

STANDARDS

R7RS, SRFI-43

HISTORY

The first RnRS report to carry this procedure is R7RS, which got it from SRFI-43.

AUTHORS

This page is part of the scheme-manpages project. It includes materials from the RnRS documents. More information can be found at https://github.com/schemedoc/manpages/.


Markup created by unroff 1.0sc,    March 04, 2023.