symbol->string -- r7rs Definition
§

Kind
§

converter;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(symbol->string symbol)

Returns the name of symbol as a string, but without adding escapes. It is an error to apply mutation procedures like string-set! to strings returned by this procedure.

(symbol->string 'flying-fish)
                                  ===>  "flying-fish"
(symbol->string 'Martin)          ===>  "Martin"
(symbol->string
   (string->symbol "Malvina"))
                                  ===>  "Malvina"

The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.

Referenced-types
§