Next: strings pred, Previous: strings views, Up: strings [Index]
Append the elements of string-list together into a single string. Guaranteed to return a freshly allocated string.
Reverse string-list then concatenate the elements, which must be strings. The first nchars code points in final-string are consed onto the beginning of string-list before performing the reversal and concatenation operations.
final-string defaults to the empty string and nchars defaults to the length of final-string.
This procedure is useful in the construction of procedures that accumulate character data into lists of string buffers, and wish to convert the accumulated data into a single string when done.
Construct a string of size len by applying integer->char to each index in the range [0, len) to produce the corresponding string element. The order in which integer->char is applied to the indices is not specified.