string-fill!
-- r7rs
Definition mutator!
;
string-fill!
(from vonuvoli
);Procedure variants:
((string character) -> (undefined))
((string character range-start) -> (undefined))
string
;character
;range-start
;undefined
;((string character range-start range-end) -> (undefined))
string
;character
;range-start
;range-end
;undefined
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(string-fill! string fill) (string-fill! string fill start) (string-fill! string fill start end)
Domain: It is an error if
fill
is not a character.The
string-fill!
procedure storesfill
in the elements ofstring
betweenstart
andend
.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.