summary refs log tree commit diff stats
path: root/tests/stdlib/tintsets.nim
Commit message (Collapse)AuthorAgeFilesLines
* packedsets fix regression introduced in #15564 (#16060)Timothee Cour2020-11-201-0/+6
| | | | | * packedsets fix regression introduced in #15564 * add tests
* Make IntSet a generic ordinal set OrdSet[A] (#15564)landerlo2020-11-131-65/+0
| | | | | | | | | | | | | | * Make IntSet an ordinal set OrdSet[A: Ordinal] Backward compatibility with IntSet is maintained. IntSet is an alias for OrdSet[int] * move ordsets to new file, intsets exports it * ordset, move to lib/std folder * Fix `$` for ordsets and test cleanup * Fix ordsets compilation in doc example * Rename ordsets to packedsets
* tables/sharedtables/intsets/etc: fix #13496, #13504, #13505; add lots of ↵Timothee Cour2020-02-261-0/+65
tests (#13498) [backport] * fix #13496 handle tombstones * add test * more tests * fix #13504; add SharedTable tests * fix #https://github.com/nim-lang/Nim/issues/13505 intsets.missingOrExcl silently gave wrong results sometimes * add test for tintsets