]> gitweb.factorcode.org Git - factor.git/blobdiff - core/hashtables/hashtables-docs.factor
Updating sequence and hashtable documentation to point more clearly at the relevant...
[factor.git] / core / hashtables / hashtables-docs.factor
index 7cc8333c12656cac001fd5cdc949feb7dba3b77b..5a19cce351dab92e79976874bb60c5af8d89efd8 100644 (file)
@@ -17,9 +17,7 @@ $nl
 ARTICLE: "hashtables" "Hashtables"
 "A hashtable provides efficient (expected constant time) lookup and storage of key/value pairs. Keys are compared for equality, and a hashing function is used to reduce the number of comparisons made. The literal syntax is covered in " { $link "syntax-hashtables" } "."
 $nl
-"Hashtable words are in the " { $vocab-link "hashtables" } " vocabulary. Unsafe implementation words are in the " { $vocab-link "hashtables.private" } " vocabulary."
-$nl
-"Hashtables implement the " { $link "assocs-protocol" } "."
+"Words for constructing hashtables are in the " { $vocab-link "hashtables" } " vocabulary. Hashtables implement the " { $link "assocs-protocol" } ", and all " { $link "assocs" } " can be used on them; there are no hashtable-specific words to access and modify keys, because associative mapping operations are generic and work with all associative mappings."
 $nl
 "Hashtables are a class of objects."
 { $subsection hashtable }