ToC DocOverview CGDoc RelNotes Index PermutedIndex
Allegro CL
Home Previous Up Next Table of Contents Index
  ANSI Common Lisp   10 Symbols   10.2 Dictionary of Symbols

10.2.11 symbol-name Function

Syntax:
symbol-name symbol    name

Arguments and Values:
symbol - a symbol.

name - a string.

Description:
symbol-name returns the name of symbol. The consequences are undefined if name is ever modified.

Examples:
 (symbol-name 'temp)  "TEMP" 
 (symbol-name :start)  "START"
 (symbol-name (gensym))  "G1234" ;for example

Exceptional Situations:
Should signal an error of type type-error if symbol is not a symbol.

Allegro CL Implementation Details:
None.

Home Previous Up Next Table of Contents Index
© Franz Inc. 1998-2005 - File last updated 6-21-2002