Mercurial > emacs
comparison src/fns.c @ 109773:0b99cd248806
* fns.c (Fmake_hash_table): Doc fix (Bug#6851).
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Fri, 13 Aug 2010 20:39:08 -0400 |
parents | df8e0cd18128 |
children | fe1680d2025e |
comparison
equal
deleted
inserted
replaced
109772:7ce174214df2 | 109773:0b99cd248806 |
---|---|
4417 | 4417 |
4418 :size SIZE -- A hint as to how many elements will be put in the table. | 4418 :size SIZE -- A hint as to how many elements will be put in the table. |
4419 Default is 65. | 4419 Default is 65. |
4420 | 4420 |
4421 :rehash-size REHASH-SIZE - Indicates how to expand the table when it | 4421 :rehash-size REHASH-SIZE - Indicates how to expand the table when it |
4422 fills up. If REHASH-SIZE is an integer, add that many space. If it | 4422 fills up. If REHASH-SIZE is an integer, increase the size by that |
4423 is a float, it must be > 1.0, and the new size is computed by | 4423 amount. If it is a float, it must be > 1.0, and the new size is the |
4424 multiplying the old size with that factor. Default is 1.5. | 4424 old size multiplied by that factor. Default is 1.5. |
4425 | 4425 |
4426 :rehash-threshold THRESHOLD -- THRESHOLD must a float > 0, and <= 1.0. | 4426 :rehash-threshold THRESHOLD -- THRESHOLD must a float > 0, and <= 1.0. |
4427 Resize the hash table when the ratio (number of entries / table size) | 4427 Resize the hash table when the ratio (number of entries / table size) |
4428 is greater or equal than THRESHOLD. Default is 0.8. | 4428 is greater or equal than THRESHOLD. Default is 0.8. |
4429 | 4429 |