about summary refs log tree commit diff
path: root/lib/lists.nix
AgeCommit message (Collapse)AuthorFilesLines
2023-02-07Merge pull request #206611 from h7x4/lib-lists-add-repeatSilvan Mosberger1-0/+12
lib.lists: add `replicate`
2023-02-06lib.lists: add `replicate`h7x41-0/+12
`replicate` returns n copies of an element as a list. Co-Authored-By: Silvan Mosberger <contact@infinisil.com>
2023-01-30lib: standardise attrset type syntaxColin Arnott1-2/+2
There are a number of different syntaxes used for attrset type signatures in our doc strings, this change standardises upon one that uses :: for specifying attribute type, and ; terminators to be consistent with nix syntax. There are no bugs in the functions themselves, just that different syntaxes may confuse new users.
2023-01-02lib: Fix mismatched quotes in `lib.*` doc commentsYoshiRulz1-3/+3
caused problems for automated rich text generation such as https://teu5us.github.io/nix-lib.html#customisation-functions
2022-08-20Fix a typo in the lib.foldr docstringSkyler1-1/+1
- This quote mark should be a backtick - Using a quote mark instead of a backtick breaks formatting when rendering the docs
2022-05-30Fix typo in compareLists docstringmichaelmouf1-1/+1
2022-03-18lib.lists: Use builtins.groupBy for lib.groupBySilvan Mosberger1-8/+9
builtins.groupBy is much more performant. It was introduced in https://github.com/NixOS/nix/pull/5715
2021-11-01lib/lists: mutuallyExclusive function optimizationpolykernel1-5/+2
The current implementation of `mutuallyExclusive` builds a new list with length subtracted by one on every recursive call which is expensive. When b is empty, the function still traverses a in its entirety before returning a result. The new implementation uses `any` to check if each element of list b is in list a using `elem`. This maintains short circuiting when list a or b is empty and has a worst case time complexity of O(nm).
2021-02-08lib: remove mention of flashplayer in docsBernardo Meurer1-1/+1
2021-01-28Deprecate lib.crossListsJacek Galowicz1-1/+3
2020-11-24lib.lists.unique: Switch from recursive function to using a foldadisbladis1-7/+1
This improves performance by ~30-40% for smaller test cases and makes larger cases where my laptop would OOM pass in seconds.
2020-10-22lib: Use Nix's static scope checking, fix error message, optimizeRobert Hensing1-1/+1
Nix can perform static scope checking, but whenever code is inside a `with` expression, the analysis breaks down, because it can't know statically what's in the attribute set whose attributes were brought into scope. In those cases, Nix has to assume that everything works out. Except it doesnt. Removing `with` from lib/ revealed an undefined variable in an error message. If that doesn't convince you that we're better off without `with`, I can tell you that this PR results in a 3% evaluation performance improvement because Nix can look up local variables by index. This adds up with applications like the module system. Furthermore, removing `with` makes the binding site of each variable obvious, which helps with comprehension.
2020-05-08fix example for foldlDrew Mullen1-2/+2
2019-09-06Merge master into staging-nextFrederik Rietdijk1-1/+1
2019-09-06Fix typo in lists.nixRobert Hensing1-1/+1
2019-08-28Merge staging-next into stagingFrederik Rietdijk1-0/+13
2019-08-26treewide: remove redundant quotesvolth1-2/+2
2019-08-05rename foreach -> forEachdanbst1-3/+3
2019-07-14lib: introduce `foreach` = flip mapdanbst1-0/+13
The main purpose is to bring attention to `flip map`, which improves code readablity. It is useful when ad-hoc anonymous function grows two or more lines in `map` application: ``` map (lcfg: let port = lcfg.port; portStr = if port != defaultPort then ":${toString port}" else ""; scheme = if cfg.enableSSL then "https" else "http"; in "${scheme}://cfg.hostName${portStr}" ) (getListen cfg); ``` Compare this to `foreach`-style: ``` foreach (getListen cfg) (lcfg: let port = lcfg.port; portStr = if port != defaultPort then ":${toString port}" else ""; scheme = if cfg.enableSSL then "https" else "http"; in "${scheme}://cfg.hostName${portStr}" ); ``` This is similar to Haskell's `for` (http://hackage.haskell.org/package/base-4.12.0.0/docs/Data-Traversable.html#v:for)
2019-04-12lib: improve the implementation of the unique functionLéo Gaspard1-2/+1
2019-03-29lib: lists: Alias builtins.mapMatthias Beyer1-1/+1
Signed-off-by: Matthias Beyer <mail@beyermatthias.de> Suggested-by: Profpatsch <mail@profpatsch.de>
2018-10-29lib/lists: Update documentation comments for doc generationVincent Ambo1-48/+136
Updates documentation comments with extra information for nixdoc[1] compatibility. [1]: https://github.com/tazjin/nixdoc
2018-09-06lib: move assertMsg and assertOneOf to their own library fileProfpatsch1-2/+2
Since the `assertOneOf` uses `lib.generators`, they are not really trivial anymore and should go into their own library file.
2018-09-06lib/trivial: add a few examples of usage of assertMsg/assertOneOfProfpatsch1-2/+5
2018-07-20[bot]: remove unreferenced codevolth1-1/+0
2018-07-05lib.concatMap and lib.mapAttrs to be builtinsvolth1-1/+1
2018-06-10lib: add groupBy (#38612)volth1-0/+36
2018-04-08lib: add naturalSort (move the example IPs to private space)volth1-2/+2
2018-04-08lib: add naturalSortvolth1-1/+22
2018-02-09Merge pull request #33898 from oxij/nixos/related-packages-v5Graham Christensen1-0/+24
nixos: doc: implement related packages in the manual (again)
2018-02-09lib: implement `compare`, `splitByAndCompare`, and `compareLists`Jan Malakhovski1-0/+24
2018-02-09nixos/tests: add predictable-interface-names.nix (#34305)symphorien1-2/+6
2017-12-23Revert "nixos: doc: implement related packages in the manual"Graham Christensen1-24/+0
2017-12-07lib: implement `compare`, `splitByAndCompare`, and `compareLists`Jan Malakhovski1-0/+24
2017-09-16Convert libs to a fixed-pointGraham Christensen1-2/+2
This does break the API of being able to import any lib file and get its libs, however I'm not sure people did this. I made this while exploring being able to swap out docFn with a stub in #2305, to avoid functor performance problems. I don't know if that is going to move forward (or if it is a problem or not,) but after doing all this work figured I'd put it up anyway :) Two notable advantages to this approach: 1. when a lib inherits another lib's functions, it doesn't automatically get put in to the scope of lib 2. when a lib implements a new obscure functions, it doesn't automatically get put in to the scope of lib Using the test script (later in this commit) I got the following diff on the API: + diff master fixed-lib 11764a11765,11766 > .types.defaultFunctor > .types.defaultTypeMerge 11774a11777,11778 > .types.isOptionType > .types.isType 11781a11786 > .types.mkOptionType 11788a11794 > .types.setType 11795a11802 > .types.types This means that this commit _adds_ to the API, however I can't find a way to fix these last remaining discrepancies. At least none are _removed_. Test script (run with nix-repl in the PATH): #!/bin/sh set -eux repl() { suff=${1:-} echo "(import ./lib)$suff" \ | nix-repl 2>&1 } attrs_to_check() { repl "${1:-}" \ | tr ';' $'\n' \ | grep "\.\.\." \ | cut -d' ' -f2 \ | sed -e "s/^/${1:-}./" \ | sort } summ() { repl "${1:-}" \ | tr ' ' $'\n' \ | sort \ | uniq } deep_summ() { suff="${1:-}" depth="${2:-4}" depth=$((depth - 1)) summ "$suff" for attr in $(attrs_to_check "$suff" | grep -v "types.types"); do if [ $depth -eq 0 ]; then summ "$attr" | sed -e "s/^/$attr./" else deep_summ "$attr" "$depth" | sed -e "s/^/$attr./" fi done } ( cd nixpkgs #git add . #git commit -m "Auto-commit, sorry" || true git checkout fixed-lib deep_summ > ../fixed-lib git checkout master deep_summ > ../master ) if diff master fixed-lib; then echo "SHALLOW MATCH!" fi ( cd nixpkgs git checkout fixed-lib repl .types )
2017-07-07lib.lists.mutuallyExclusive: add functionVladimír Čunát1-0/+8
2017-07-04lib: introduce imap0, imap1 (#25543)zimbatm1-4/+10
* lib: introduce imap0, imap1 For historical reasons, imap starts counting at 1 and it's not consistent with the rest of the lib. So for now we split imap into imap0 that starts counting at zero and imap1 that starts counting at 1. And imap is marked as deprecated. See https://github.com/NixOS/nixpkgs/commit/c71e2d42359f9900ea2c290d141c0d606471da16#commitcomment-21873221 * replace uses of lib.imap * lib: move imap to deprecated.nix
2017-04-19lib: trivial spelling fixesTom Saeger1-1/+1
2017-03-19lib/lists: rename fold to foldr & improve fold docsProfpatsch1-12/+29
In order to better distinguish foldr from foldl the default name is changed to foldr, but fold is still a synonym. Additionally the docs are improved and examples added.
2016-08-29Use builtins.partition if availableEelco Dolstra1-2/+2
2016-08-23lib: introduce listDfs and toposort, add example to hasPrefixJan Malakhovski1-0/+80
2016-08-10flatten: drastically improve performance, see #17626Domen Kožar1-1/+1
2016-07-11Really remove library functionsEelco Dolstra1-4/+0
Throwing a message like "removed 2016-02-29 because unused and broken" is unhelpful because it doesn't show what function was removed.
2016-06-17Remove unecessary branching on old nix versionszimbatm1-66/+12
All these builtins are available since 1.10 or earlier (1.10 being the lib/minver.nix)
2016-05-26lib.lists: fix fold exampleDomen Kožar1-1/+1
2016-03-10lib/lists: document all functionszimbatm1-55/+217
2016-03-09Remove lib.deepSeqList and lib.deepSeqAttrszimbatm1-3/+3
Both functions are broken and unused in the repo.
2015-07-28Use builtins.sortEelco Dolstra1-2/+3
2015-07-28Use builtins.genListEelco Dolstra1-49/+90
This fixes the quadratic complexity of functions like imap.
2015-07-28Remove zipTwoListsEelco Dolstra1-14/+0
This function is redundant (we also have zipLists).