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.

— Scheme Procedure: string-tabulate proc len

Construct a string of size len by applying proc, an integer-to-character procedure, to each index to produce the corresponding string element. The order in which proc is applied to the indices is not specified.