This commit is contained in:
stibear 2014-10-24 00:37:35 +09:00
parent aedac1ddd0
commit c5698e7b7c
1 changed files with 5 additions and 1 deletions

View File

@ -233,9 +233,13 @@ Object-to-object table. Internally it is implemented on hash-table. Equivalence
Note that dictionary is not a weak map; if you are going to make a highly memory-consuming program with dictionaries, you should know that dictionaries keep their bound objects and never let them free until you explicitly deletes bindings.
- **(make-dictionary)**
Returns a newly allocated empty dictionary.
- **(dictionary . plist)**
Returns a newly allocated empty dictionary. The dictionary is initialized with the content of plist.
Returns a dictionary initialized with the content of plist.
- **(dictionary? obj)**