Node:SRFI-13 Constructors, Next:SRFI-13 List/String Conversion, Previous:SRFI-13 Predicates, Up:SRFI-13
SRFI-13 defines several procedures for constructing new strings. In
addition to make-string
and string
(available in the Guile
core library), the procedure string-tabulate
does exist.
string-tabulate proc len | Scheme Procedure |
proc is an integer->char procedure. Construct a string of size len by applying proc to each index to produce the corresponding string element. The order in which proc is applied to the indices is not specified. |