Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | moved random procs from math to its own module (breaking change) | Andreas Rumpf | 2016-05-30 | 1 | -1/+1 |
| | |||||
* | Fixes foldl() and foldr() + foldl() with start parameter. | Hans Raaf | 2016-03-06 | 1 | -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 module | def | 2015-11-23 | 1 | -6/+3 |
| | |||||
* | added all/any/allIt/anyIt with tests and inline documentation | rbmz | 2015-10-13 | 1 | -0/+93 |
| | | | | Signed-off-by: rbmz <rbmz@users.noreply.github.com> | ||||
* | restore {.immediate.} to toSeq | Peter Mora | 2015-10-06 | 1 | -1/+1 |
| | |||||
* | sequtils related changes | Peter Mora | 2015-10-05 | 1 | -36/+169 |
| | |||||
* | Fixed my name. | Alexander Mitchell-Robinson | 2015-09-07 | 1 | -2/+2 |
| | |||||
* | removed sequtils.reversed again since it's already in algorithm.nim | Araq | 2015-08-10 | 1 | -23/+0 |
| | |||||
* | added sequtils.reversed; refs #3148 | Araq | 2015-08-09 | 1 | -0/+23 |
| | |||||
* | 'sequtils doesn't take confusing default args anymore | Araq | 2015-07-08 | 1 | -1/+1 |
| | |||||
* | Turn some test outputs into actual tests | Oleh Prypin | 2015-04-21 | 1 | -4/+2 |
| | |||||
* | Don't run non-test code when defined(testing) | Oleh Prypin | 2015-04-21 | 1 | -2/+4 |
| | |||||
* | prepare for upcoming parsing change of unary operators | Araq | 2015-03-22 | 1 | -8/+8 |
| | |||||
* | Changed cast to type conversion and added XXX. | Hans Raaf | 2015-03-07 | 1 | -1/+1 |
| | |||||
* | Do we want we to use the typesystem like this? | Hans Raaf | 2015-03-06 | 1 | -2/+3 |
| | |||||
* | Added repeat(seq, n) to sequtils. | Hans Raaf | 2015-03-06 | 1 | -0/+28 |
| | | | | This adds a repeat proc for sequences. There is also an test for it at the end of file. | ||||
* | Fix typos | Federico Ceratto | 2015-02-15 | 1 | -4/+4 |
| | |||||
* | Fix typos | Federico Ceratto | 2015-02-15 | 1 | -10/+10 |
| | |||||
* | Changed name 'pred' to 'op' in mapIt template | dumndummer | 2015-02-02 | 1 | -2/+2 |
| | |||||
* | Update sequtils.nim | dumndummer | 2015-01-28 | 1 | -2/+2 |
| | | | Renamed param name 'pred' to 'op' in mapIt template to better correspond with map proc in system module | ||||
* | fixes #619 | Araq | 2014-11-15 | 1 | -0/+4 |
| | |||||
* | recursive tuple types are now invalid (breaking change) | Araq | 2014-10-02 | 1 | -0/+2 |
| | |||||
* | big rename | Araq | 2014-08-27 | 1 | -26/+26 |
| | |||||
* | Move newSeqWith to sequtils | def | 2014-08-11 | 1 | -0/+24 |
| | |||||
* | Merge pull request #1377 from sjakobi/patch-1 | Andreas Rumpf | 2014-07-19 | 1 | -1/+1 |
|\ | | | | | sequtils: Correct documentation for keepIf proc | ||||
| * | sequtils: Correct documentation for keepIf proc | Simon Jakobi | 2014-07-18 | 1 | -1/+1 |
| | | |||||
* | | sequtils: Complete mapIt documentation example | Simon Jakobi | 2014-07-19 | 1 | -0/+1 |
|/ | |||||
* | Merge pull request #1301 from def-/sequtils-filter-directly | Andreas Rumpf | 2014-06-30 | 1 | -0/+49 |
|\ | | | | | Add keepIf proc and keepIfIt template to sequtils | ||||
| * | Rename keepIfIt to keepItIf | def | 2014-06-28 | 1 | -5/+5 |
| | | |||||
| * | Add keepIf proc and keepIfIt template to sequtils | def | 2014-06-22 | 1 | -0/+49 |
| | | |||||
* | | Rename sequtils.distnct to sequtils.deduplicate. | Reimer Behrends | 2014-06-28 | 1 | -9/+5 |
|/ | |||||
* | Renames split to distribute. Refs #1084. | Grzegorz Adam Hankiewicz | 2014-04-13 | 1 | -28/+29 |
| | |||||
* | Adds generic split proc to sequtils. | Grzegorz Adam Hankiewicz | 2014-04-11 | 1 | -0/+90 |
| | |||||
* | Adds convenience mapIt templates. | Grzegorz Adam Hankiewicz | 2014-02-02 | 1 | -0/+39 |
| | |||||
* | case consistency part 4 | Araq | 2013-12-27 | 1 | -1/+1 |
| | |||||
* | Apply changes suggested by Araq | Varriount | 2013-10-27 | 1 | -2/+21 |
| | | | Added documentation examples, added defaults | ||||
* | Added an insertion function that inserts elements of an openarray. | Clay Sweetser | 2013-10-20 | 1 | -0/+50 |
| | | | | Added a deletion function that allows elements between two positions in a sequence to be deleted | ||||
* | 'inject' for 'for' loop variables | Araq | 2013-05-14 | 1 | -2/+1 |
| | |||||
* | Fixes the dirtyness of the filterIt template. Refs #351. | Grzegorz Adam Hankiewicz | 2013-03-17 | 1 | -2/+7 |
| | |||||
* | Adds foldl and foldr templates to sequtils. | Grzegorz Adam Hankiewicz | 2013-03-16 | 1 | -0/+98 |
| | |||||
* | Indents documentation tests with blocks for hygiene. | Grzegorz Adam Hankiewicz | 2013-03-16 | 1 | -57/+56 |
| | |||||
* | Renames each proc to map, each is left deprecated. | Grzegorz Adam Hankiewicz | 2013-01-22 | 1 | -2/+2 |
| | |||||
* | fixes sequtils.filterIt | Araq | 2013-01-19 | 1 | -5/+4 |
| | |||||
* | Adds note about distnct being misspelled on purpose. | Grzegorz Adam Hankiewicz | 2013-01-09 | 1 | -1/+5 |
| | |||||
* | Adds documentation examples to sequtils. | Grzegorz Adam Hankiewicz | 2013-01-09 | 1 | -8/+145 |
| | |||||
* | Hyperlinks each proc and explains it is like map. | Grzegorz Adam Hankiewicz | 2013-01-09 | 1 | -2/+5 |
| | |||||
* | Moves toSeq template to public sequtils module. | Grzegorz Adam Hankiewicz | 2013-01-03 | 1 | -0/+6 |
| | |||||
* | documented hygienic templates; made tests green; fixed system.clamp | Araq | 2012-08-22 | 1 | -1/+4 |
| | |||||
* | made tests green again | Araq | 2012-08-16 | 1 | -1/+1 |
| | |||||
* | preparations for making 'closure' the default calling convention for proc types | Araq | 2012-07-16 | 1 | -2/+2 |
| |