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
fillis not a character.The
string-fill!procedure storesfillin the elements ofstringbetweenstartandend.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.