summary refs log tree commit diff stats
path: root/lib/std/packedsets.nim
Commit message (Collapse)AuthorAgeFilesLines
* Overrides `=copy` for `PackedSets` (#21417)ringabout2023-02-271-15/+14
|
* move assertions out of system (#19599)flywind2022-03-231-0/+3
|
* various small documentation improvements (#18602)Miran2021-07-281-4/+4
|
* ORC: progress (#18000)Andreas Rumpf2021-05-121-1/+1
| | | | | | | | | * ORC: progress * ORC: bugfix; don't follow acyclic data even if only at runtime the subtype is marked as acyclic * progress * minor style changes
* Small update for packedsets (#17037)konsumlamm2021-02-151-12/+11
| | | | Rename PTrunk to Trunk Use ord instead of cast[int]
* remove conditionals on nimHasUserErrors, nimNoNilSeqs2, nimNoNilSeqs (#16861)Timothee Cour2021-01-291-9/+3
| | | | | | | | | * cleanup docs for type(nil) | type(nil); simplify nimHasUserErrors * simplify nimNoNilSeqs2 * simplify nimNoNilSeqs * fixup
* Improve documentation for packedsets (#16715)konsumlamm2021-01-161-137/+135
| | | | | | | | | * Improve documentation for packedsets Add more runnableExamples Add deprecated pragma to intsets Replace intsets with packedsets in lib.rst * Apply suggested changes
* Fix broken links in docs (#16336)Elliot Waite2020-12-141-3/+3
| | | | | * Fix broken links in docs * Fix rand HSlice links
* packedsets fix regression introduced in #15564 (#16060)Timothee Cour2020-11-201-8/+9
| | | | | * packedsets fix regression introduced in #15564 * add tests
* Make IntSet a generic ordinal set OrdSet[A] (#15564)landerlo2020-11-131-0/+607
* 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