blob: 38628c4207683068cd4e3104251c7c0a0e17043d [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001SYNOPSIS
Zesstra715ec202025-07-09 22:18:31 +02002 quoted_array unquote(quoted_array)
3 string|symbol unquote(symbol)
MG Mud User88f12472016-06-24 23:31:02 +02004
Zesstra715ec202025-07-09 22:18:31 +02005DESCRIPTION
6 Removes a quote from quoted arrays and symbols. When the
7 last quote from a symbol is removed, the result is a string.
MG Mud User88f12472016-06-24 23:31:02 +02008
Zesstra715ec202025-07-09 22:18:31 +02009EXAMPLES
10 unquote('foo) -> "foo"
11 unquote( '({1,2,3}) ) -> ({1,2,3})
MG Mud User88f12472016-06-24 23:31:02 +020012
Zesstra715ec202025-07-09 22:18:31 +020013HISTORY
14 Introduced in LDMud 3.2.9 .
MG Mud User88f12472016-06-24 23:31:02 +020015
Zesstra715ec202025-07-09 22:18:31 +020016SEE ALSO
MG Mud User88f12472016-06-24 23:31:02 +020017 quote(E), symbolp(E)