string->vector -- r7rs Definition
§

Kind
§

converter;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(vector->string vector)
(vector->string vector start)
(vector->string vector start end)
(string->vector string)
(string->vector string start)
(string->vector string start end)

Domain: It is an error if any element of vector between start and end is not a character.

The vector->string procedure returns a newly allocated string of the objects contained in the elements of vector between start and end. The string->vector procedure returns a newly created vector initialized to the elements of the string string between start and end.

In both procedures, order is preserved.

(string->vector "ABC")          ===>   #(#\A #\B #\C)
(vector->string #(#\1 #\2 #\3)  ===>   "123"

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

Referenced-types
§