Node:SRFI-13 Constructors, Next:, Previous:SRFI-13 Predicates, Up:SRFI-13



39.11.3 Constructors

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.