vector-fill! -- r7rs Definition
§

Kind
§

mutator!;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(vector-fill! vector fill)
(vector-fill! vector fill start)
(vector-fill! vector fill start end)

The vector-fill! procedure stores fill in the elements of vector between start and end.

(define a (vector 1 2 3 4 5))
(vector-fill! a 'smash 2 4)
a  ===>  #(1 2 smash smash 5)

The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.

Referenced-types
§