MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | SYNOPSIS |
2 | quoted_array unquote(quoted_array arr); | ||||
3 | string|symbol unquote(symbol sym); | ||||
4 | |||||
5 | BESCHREIBUNG | ||||
6 | Entfernt ein Quote von einem gequoteten Array oder Symbol. Wenn das | ||||
7 | letzte Quote von einem Symbol entfernt wird, entsteht ein String. | ||||
8 | |||||
9 | BEISPIELE: | ||||
10 | unquote('foo); ergibt: "foo" | ||||
11 | unquote( '({1,2,3}) ); ergibt: ({1,2,3}) | ||||
12 | |||||
13 | AENDERUNGEN | ||||
14 | Eingefuehrt in LDMud 3.2.9. | ||||
15 | |||||
16 | SIEHE AUCH | ||||
17 | quote(E), symbolp(E) |