summary refs log tree commit diff stats
path: root/lib/pure/collections
Commit message (Collapse)AuthorAgeFilesLines
* Refac of lists module (#6400)GULPF2017-10-161-105/+32
|
* Sets enhancements, fixes #2467 (#6158)GULPF2017-09-201-4/+94
|
* Add counterpart to containsOrIncl for excl (#6360)superfunc2017-09-153-37/+93
|
* Fix #4366 (#6290)Daniil Yarancev2017-09-021-1/+1
|
* tables.nim: use proper spacingAndreas Rumpf2017-08-311-5/+5
|
* remove ArrayDummySize with unchecked arrays (#5818)Jacek Sieka2017-08-282-4/+2
|
* fixes #6250 (#6251)David Krause2017-08-171-1/+15
|
* Fixes #6110Daniil Yarancev2017-08-121-1/+1
|
* optimized intsets to not allocate for the common casesAndreas Rumpf2017-07-251-59/+120
|
* Remove expr/stmt (#5857)Arne Döring2017-07-255-8/+9
|
* fix orderedtable enlarge proc. (#5937)Parashurama2017-06-051-2/+5
| | | This fixes issue #5917
* Implement 'take' for Table and TableRef (#5773)Ruslan Mustakov2017-05-041-11/+30
|
* Minor: spelling correction in tables.nim (#5727)Zach Smith2017-04-191-2/+2
|
* Deques compilation error fix (#5591)Dmitriy Fomichev2017-03-241-2/+2
|
* Added clear() function for OrderedSet and HashSet. (#5545)GrundleTrundle2017-03-161-0/+25
|
* Minor doc fix as per issue #5523 (#5533)Mark Summerfield2017-03-141-1/+2
|
* sequtils: removed outdated noteAndreas Rumpf2017-03-141-3/+0
|
* fixes #5487 (#5494)David Krause2017-03-071-15/+49
|
* Fix for #5482, let OrderedTable accept multiple keys (#5485)David Krause2017-03-051-1/+15
|
* Add compute proc for SharedTable (#5385)Ruslan Mustakov2017-03-022-3/+52
|
* Various fixes to FutureStreams based on PR feedback.Dominik Picheta2017-02-261-1/+1
|
* Merge branch 'devel' into feature/async-streamsAraq2017-02-251-10/+31
|\
| * Fixed heapqueue.del for last elem (#5363)Yuriy Glukhov2017-02-101-10/+31
| |
* | Work around issue with queues. Refs #4773.Dominik Picheta2017-02-101-1/+1
|/
* reenabled clear test, made clear working (#5323)Arne Döring2017-02-021-2/+5
|
* Added heapqueue.del (#5289)Yuriy Glukhov2017-01-271-11/+35
|
* re additions for buffer (cstring) RE matching (#5117)jlp7652017-01-161-1/+1
| | | | | | | | | | | | | | | | | | * Replace expr with untyped * Add buffer (cstring) related procs Replace expr with untyped Replace testing assert() procs with doAssert() * make the string variants call the cstring variants in order to fight code size * Remove redundant proc * fix casting of cstring add init of variables (identified by verbosity:3) * Speed up - use pattern.e for exec() inline some procs
* Fix description of CountTable's smallest procPaweł Świątkowski2016-12-111-2/+2
|
* More workarounds for #5098Yuriy Glukhov2016-12-073-3/+11
|
* Workaround for #5098Yuriy Glukhov2016-12-051-4/+3
|
* Merge pull request #5044 from endragor/dequesAndreas Rumpf2016-11-282-1/+269
|\ | | | | Added deques module, deprecating queues
| * Added deques module, deprecating queuesRuslan Mustakov2016-11-242-1/+269
| |
* | Corrected test case for #5057.Yuriy Glukhov2016-11-271-3/+3
| |
* | Fixes #5057Yuriy Glukhov2016-11-261-12/+28
|/
* Fixes #5035Felix Krause2016-11-182-14/+13
|
* Fixes #4974Felix Krause2016-10-311-9/+15
|
* fixes #4940andri lim2016-10-271-1/+1
|
* Fixes #4946Felix Krause2016-10-241-0/+1
|
* Merge pull request #4935 from flyx/tablefixAndreas Rumpf2016-10-241-4/+37
|\ | | | | Table fixes. fixes #4901
| * Table fixes. fixes #4901Felix Krause2016-10-231-4/+37
| | | | | | | | | | | | | | | | * added `==` for OrderedTable, CountTable and the *Ref types * added missing documentation to all `==` procs * fixed clear() for OrderedTables, which did not work because `var` does not work well with `|` * added tests
* | fixes #4386Andreas Rumpf2016-10-231-2/+2
|/
* fixes #4844Araq2016-10-081-1/+5
|
* Allow compilation of sharedtables.nimcoffeepots2016-09-091-0/+2
| | | tableimpl uses {.oldimmediate.}, which is defined in system/inclrtl.
* fixes a critical tables bug that caused 'enlarge' to crash after 'add'Andreas Rumpf2016-09-052-11/+17
|
* Merge pull request #4367 from kierdavis/4365-tables-clearAndreas Rumpf2016-08-252-4/+5
|\ | | | | Improvements to tables.clear()
| * Add a fix for clear() on non-ref types by adding a missing 'var' annotation ↵Kier Davis2016-07-091-3/+3
| | | | | | | | | | | | | | | | to the type signature However, this fix won't take effect until a compiler bug (#4448) is fixed. Until then, the codebase functions identically to how it did before this commit (calls to clear() fail to compile for Table/OrderedTable/CountTable as the argument is immutable).
| * Fix clear() on CountTableKier Davis2016-07-091-1/+2
| | | | | | | | | | | | The record tuples used in CountData.data don't contain an 'hcode' member, unlike Table and OrderedTable, causing the existing clearImpl() implementation to break when attempting to assign to t.data[i].hcode.
* | Removed the use of .gensym pragma inside stdlib templatesRuslan Mustakov2016-08-231-8/+8
| |
* | expr and stmt are now deprecatedAndreas Rumpf2016-07-301-2/+2
| |
* | make nim bootstrap again for older versionsAndreas Rumpf2016-07-303-5/+7
| |