diff options
author | Miran <narimiran@disroot.org> | 2020-07-08 15:01:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-08 15:01:47 +0200 |
commit | 3de5296337a0711b4d907728ac24fa07791d3224 (patch) | |
tree | 9f9ac91e49e9deefd995eb405f4341c6653e43e7 /tests/collections | |
parent | 06d776a5828d429f62c3189a99161604d50f9b96 (diff) | |
download | Nim-3de5296337a0711b4d907728ac24fa07791d3224.tar.gz |
remove a condition that table size must be passed as power of 2 (#14926)
* remove a condition that table size must be passed as power of 2 * remove power-of-2 condition from sets and sharedtables * remove power-of-2 condition from deques * use 'correctSize' for both branches * prettify changelog.md and fix typos * add a changelog entry * fix double-call of 'right-size' * fix the same thing in sets.nim * introduce a new internal proc `slotsNeeded` Deprecate the public proc `rightSize`, which is not needed anymore. Now it is an identity function, allowing the old code to work correctly and without extra allocations.
Diffstat (limited to 'tests/collections')
-rw-r--r-- | tests/collections/ttables.nim | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/collections/ttables.nim b/tests/collections/ttables.nim index 392b5e93e..af8364488 100644 --- a/tests/collections/ttables.nim +++ b/tests/collections/ttables.nim @@ -446,3 +446,13 @@ block: # https://github.com/nim-lang/Nim/issues/13496 testDel(): (let t = newOrderedTable[int, int]()) testDel(): (var t: CountTable[int]) testDel(): (let t = newCountTable[int]()) + + +block testNonPowerOf2: + var a = initTable[int, int](7) + a[1] = 10 + assert a[1] == 10 + + var b = initTable[int, int](9) + b[1] = 10 + assert b[1] == 10 |