From c5698e7b7c97465bb2bdb122daa973bdb1cdff42 Mon Sep 17 00:00:00 2001 From: stibear Date: Fri, 24 Oct 2014 00:37:35 +0900 Subject: [PATCH] fixed #232 --- docs/libs.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/libs.rst b/docs/libs.rst index bd87e98b..5227e265 100644 --- a/docs/libs.rst +++ b/docs/libs.rst @@ -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)**