DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH
 

(guile.info.gz) String Constructors

Info Catalog (guile.info.gz) String Predicates (guile.info.gz) Strings (guile.info.gz) List/String Conversion
 
 21.4.3 String Constructors
 --------------------------
 
 The string constructor procedures create new string objects, possibly
 initializing them with some specified character data.
 
  -- Scheme Procedure: string . chrs
  -- Scheme Procedure: list->string chrs
  -- C Function: scm_string (chrs)
      Return a newly allocated string composed of the arguments, CHRS.
 
  -- Scheme Procedure: make-string k [chr]
  -- C Function: scm_make_string (k, chr)
      Return a newly allocated string of length K.  If CHR is given,
      then all elements of the string are initialized to CHR, otherwise
      the contents of the STRING are unspecified.
 
Info Catalog (guile.info.gz) String Predicates (guile.info.gz) Strings (guile.info.gz) List/String Conversion
automatically generated byinfo2html