make-string
-- r7rs
Definition constructor
;
make-string
(from vonuvoli
);Procedure variants:
((range-length-zero) -> (string-empty))
range-length-zero
;string-empty
;((range-length-zero character) -> (string-empty))
range-length-zero
;character
;string-empty
;((range-length-not-zero) -> (string-not-empty))
range-length-not-zero
;string-not-empty
;((range-length-not-zero character) -> (string-not-empty))
range-length-not-zero
;character
;string-not-empty
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(make-string k) (make-string k char)
The
make-string
procedure returns a newly allocated string of lengthk
. Ifchar
is given, then all the characters of the string are initialized tochar
, otherwise the contents of the string are unspecified.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.