summary refs log tree commit diff stats
path: root/lib/pure/collections/sequtils.nim
Commit message (Collapse)AuthorAgeFilesLines
* make sequtils compileAraq2018-08-221-1/+0
|
* fixes #7187 sequtils.toSeq produces the sequence from the iterator twice (#8586)Timothee Cour2018-08-161-14/+26
| | | | | * cleanups refs #8584 * fixes #7187
* fixes #8577, fixes #8580, other bug fixes (#8584)Timothee Cour2018-08-141-38/+86
|
* Fix regression for mapIt (#8567)LemonBoy2018-08-081-3/+8
| | | | | | Don't try to be too smart and limit the use of `evalOnce` where strictly needed as not every value can be assigned with a `let`. Fixes #8566
* Make mapIt work on openArray's (#8543)LemonBoy2018-08-071-3/+30
|
* sequtils: remove some aligning spaces around == to silence warningsskilchen2018-07-211-13/+13
|
* fix issues #6986 and #7501 (#7513)skilchen2018-04-061-1/+1
|
* fixes #7215Andreas Rumpf2018-02-141-1/+1
|
* fix documentation comments in sequtils.nimAndreas Rumpf2017-12-051-2/+2
|
* added a warning that the .deprecate statement is unreliable for routinesAndreas Rumpf2017-11-211-2/+0
|
* cleaned up macros.nimAndreas Rumpf2017-11-191-4/+5
|
* replaced asArray with a much more powerful mapLiterals macroAndreas Rumpf2017-11-181-16/+39
|
* Use 'typedesc' instead of 'untyped'Andreas Rumpf2017-11-181-1/+1
|
* Move asArray macro back to sequtilsFredrik Høisæther Rasch2017-11-181-0/+30
| | | | This reverts commit 72f653c2daa5c629ed8a57a4f53dcef56432aa26.
* Moving asArray to future moduleFredrik Høisæther Rasch2017-11-181-29/+0
| | | | As per [suggestion](https://github.com/nim-lang/Nim/pull/6640#issuecomment-341565453) made by @Araq
* Swapping asArray parameter orderFredrik Høisæther Rasch2017-11-181-3/+3
| | | | In reaction to https://github.com/nim-lang/Nim/pull/6640#issuecomment-341528413
* Changing asArray documentationFredrik Høisæther Rasch2017-11-181-2/+2
| | | | in reaction to https://github.com/nim-lang/Nim/pull/6640#discussion_r148367553
* avoid asArray macros import when using nimscriptFredrik Høisæther Rasch2017-11-181-25/+25
|
* Implement an `asArray` macroFredrik Høisæther Rasch2017-11-181-0/+29
| | | | fixes #6563
* deprecated unary '<'Andreas Rumpf2017-10-291-17/+17
|
* Sequtils improvements (#6574)narimiran2017-10-251-171/+267
|
* update linksnarimiran2017-10-221-2/+2
|
* change seq name to `list`narimiran2017-10-221-75/+76
|
* more descriptive namesnarimiran2017-10-221-4/+4
|
* add `count` to sequtilsnarimiran2017-10-211-0/+31
|
* Remove expr/stmt (#5857)Arne Döring2017-07-251-1/+1
|
* sequtils: removed outdated noteAndreas Rumpf2017-03-141-3/+0
|
* fixes #4386Andreas Rumpf2016-10-231-2/+2
|
* Removed the use of .gensym pragma inside stdlib templatesRuslan Mustakov2016-08-231-8/+8
|
* make nim bootstrap again for older versionsAndreas Rumpf2016-07-301-1/+3
|
* stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-12/+12
|
* moved random procs from math to its own module (breaking change)Andreas Rumpf2016-05-301-1/+1
|
* Fixes foldl() and foldr() + foldl() with start parameter.Hans Raaf2016-03-061-10/+37
| | | | | | | | | This fixes the (potential) multi-evaluation of the sequence parameter in foldl() and foldr(). It also adds a foldl() version which gets a start parameter. This allows for creating a result with a different type than the elements of the sequence.
* Update comment about `map` being in system moduledef2015-11-231-6/+3
|
* added all/any/allIt/anyIt with tests and inline documentationrbmz2015-10-131-0/+93
| | | | Signed-off-by: rbmz <rbmz@users.noreply.github.com>
* restore {.immediate.} to toSeqPeter Mora2015-10-061-1/+1
|
* sequtils related changesPeter Mora2015-10-051-36/+169
|
* Fixed my name.Alexander Mitchell-Robinson2015-09-071-2/+2
|
* removed sequtils.reversed again since it's already in algorithm.nimAraq2015-08-101-23/+0
|
* added sequtils.reversed; refs #3148Araq2015-08-091-0/+23
|
* 'sequtils doesn't take confusing default args anymoreAraq2015-07-081-1/+1
|
* Turn some test outputs into actual testsOleh Prypin2015-04-211-4/+2
|
* Don't run non-test code when defined(testing)Oleh Prypin2015-04-211-2/+4
|
* prepare for upcoming parsing change of unary operatorsAraq2015-03-221-8/+8
|
* Changed cast to type conversion and added XXX.Hans Raaf2015-03-071-1/+1
|
* Do we want we to use the typesystem like this?Hans Raaf2015-03-061-2/+3
|
* Added repeat(seq, n) to sequtils.Hans Raaf2015-03-061-0/+28
| | | | This adds a repeat proc for sequences. There is also an test for it at the end of file.
* Fix typosFederico Ceratto2015-02-151-4/+4
|
* Fix typosFederico Ceratto2015-02-151-10/+10
|
* Changed name 'pred' to 'op' in mapIt templatedumndummer2015-02-021-2/+2
|