Tables: toCountTable: Update docs.

This commit is contained in:
Konstantin Molchanov
2017-12-27 13:44:47 +04:00
parent c36d7ffc7c
commit b592f069bb

View File

@@ -966,7 +966,8 @@ proc initCountTable*[A](initialSize=64): CountTable[A] =
newSeq(result.data, initialSize)
proc toCountTable*[A](keys: openArray[A]): CountTable[A] =
## creates a new count table with every key in `keys` having a count of 1.
## creates a new count table with every key in `keys` having a count
## of how many times it occurs in `keys`.
result = initCountTable[A](rightSize(keys.len))
for key in items(keys): result.inc key