Dynamic.Symbol

concat

command

Dynamic

concatenates a list of symbols together.

Example Usage:

(Symbol.concat ['x 'y 'z]) ; => 'xyz

from

command

Dynamic

converts a variety of types to a symbol.

Example Usage:

(Symbol.from true) ; => True

prefix

command

Dynamic

prefixes a symbol with a module.

Example Usage:

(Symbol.prefix 'Module 'fun) ; => Module.fun

str

command

Dynamic

converts a symbol to a string.

Example Usage:

(Symbol.str 'x) ; => "x"