init list helper

wip/yesman
Edward Tjörnhammar 10 years ago
parent 6110679bee
commit 2bbd01485a
  1. 4
      lib/lists.nix

@ -209,6 +209,10 @@ in rec {
assert list != []; elemAt list (dec (length list));
# Return all elements but the last
init = list: assert list != []; take (length list - 1) list;
# Zip two lists together.
zipTwoLists = xs: ys:
let

Loading…
Cancel
Save