Giter VIP home page Giter VIP logo

dash.el's Introduction

CI GNU ELPA GNU-devel ELPA MELPA Stable MELPA

dash.el

A modern list API for Emacs. No 'cl required.

See the end of the file for license conditions.

Contents

Change log

See the NEWS.md file.

Installation

Dash is available on GNU ELPA, GNU-devel ELPA, and MELPA, and can be installed with the standard command package-install:

M-x package-install RET dash RET

See (info "(emacs) Package Installation").

Alternatively, you can just dump dash.el in your load-path somewhere. See (info "(emacs) Lisp Libraries").

Using in a package

Add something like this to the library's headers:

;; Package-Requires: ((dash "2.19.1"))

See (info "(elisp) Library Headers").

Fontification of special variables

Font lock of special Dash variables (it, acc, etc.) in Emacs Lisp buffers can optionally be enabled with the autoloaded minor mode dash-fontify-mode. In older Emacs versions which do not dynamically detect macros, the minor mode also fontifies Dash macro calls.

To automatically enable the minor mode in all Emacs Lisp buffers, just call its autoloaded global counterpart global-dash-fontify-mode, either interactively or from your user-init-file:

(global-dash-fontify-mode)

Info symbol lookup

While editing Elisp files, you can use C-h S (info-lookup-symbol) to look up Elisp symbols in the relevant Info manuals (see (emacs) Info Lookup). To enable the same for Dash symbols, use the command dash-register-info-lookup. It can be called directly when needed, or automatically from your user-init-file. For example:

(with-eval-after-load 'info-look
  (dash-register-info-lookup))

Functions

All functions and constructs in the library use a dash (-) prefix.

The library also provides anaphoric macro versions of functions where that makes sense. The names of these macros are prefixed with two dashes (--) instead of one.

While -map applies a function to each element of a list, its anaphoric counterpart --map evaluates a form with the local variable it temporarily bound to the current list element instead. For example:

(-map (lambda (n) (* n n)) '(1 2 3 4)) ; Normal version.
(--map (* it it) '(1 2 3 4))           ; Anaphoric version.

The normal version can of course also be written as follows:

(defun my-square (n)
  "Return N multiplied by itself."
  (* n n))

(-map #'my-square '(1 2 3 4))

This demonstrates the utility of both versions.

Maps

Functions in this category take a transforming function, which is then applied sequentially to each or selected elements of the input list. The results are collected in order and returned as a new list.

Sublist selection

Functions returning a sublist of the original list.

List to list

Functions returning a modified copy of the input list.

Reductions

Functions reducing lists to a single value (which may also be a list).

Unfolding

Operations dual to reductions, building lists from a seed value rather than consuming a list to produce a single value.

Predicates

Reductions of one or more lists to a boolean value.

Partitioning

Functions partitioning the input list into a list of lists.

Indexing

Functions retrieving or sorting based on list indices and related predicates.

Set operations

Operations pretending lists are sets.

Other list operations

Other list functions not fit to be classified elsewhere.

Tree operations

Functions pretending lists are trees.

Threading macros

Macros that conditionally combine sequential forms for brevity or readability.

  • -> (x &optional form &rest more)
  • ->> (x &optional form &rest more)
  • --> (x &rest forms)
  • -as-> (value variable &rest forms)
  • -some-> (x &optional form &rest more)
  • -some->> (x &optional form &rest more)
  • -some--> (expr &rest forms)
  • -doto (init &rest forms)

Binding

Macros that combine let and let* with destructuring and flow control.

Side effects

Functions iterating over lists for side effect only.

Destructive operations

Macros that modify variables holding lists.

Function combinators

Functions that manipulate and compose other functions.

Maps

Functions in this category take a transforming function, which is then applied sequentially to each or selected elements of the input list. The results are collected in order and returned as a new list.

-map (fn list)

Apply fn to each item in list and return the list of results.

This function's anaphoric counterpart is --map.

(-map (lambda (num) (* num num)) '(1 2 3 4)) ;; => (1 4 9 16)
(-map #'1+ '(1 2 3 4)) ;; => (2 3 4 5)
(--map (* it it) '(1 2 3 4)) ;; => (1 4 9 16)

-map-when (pred rep list)

Use pred to conditionally apply rep to each item in list. Return a copy of list where the items for which pred returns nil are unchanged, and the rest are mapped through the rep function.

Alias: -replace-where

See also: -update-at

(-map-when 'even? 'square '(1 2 3 4)) ;; => (1 4 3 16)
(--map-when (> it 2) (* it it) '(1 2 3 4)) ;; => (1 2 9 16)
(--map-when (= it 2) 17 '(1 2 3 4)) ;; => (1 17 3 4)

-map-first (pred rep list)

Use pred to determine the first item in list to call rep on. Return a copy of list where the first item for which pred returns non-nil is replaced with the result of calling rep on that item.

See also: -map-when, -replace-first

(-map-first 'even? 'square '(1 2 3 4)) ;; => (1 4 3 4)
(--map-first (> it 2) (* it it) '(1 2 3 4)) ;; => (1 2 9 4)
(--map-first (= it 2) 17 '(1 2 3 2)) ;; => (1 17 3 2)

-map-last (pred rep list)

Use pred to determine the last item in list to call rep on. Return a copy of list where the last item for which pred returns non-nil is replaced with the result of calling rep on that item.

See also: -map-when, -replace-last

(-map-last 'even? 'square '(1 2 3 4)) ;; => (1 2 3 16)
(--map-last (> it 2) (* it it) '(1 2 3 4)) ;; => (1 2 3 16)
(--map-last (= it 2) 17 '(1 2 3 2)) ;; => (1 2 3 17)

-map-indexed (fn list)

Apply fn to each index and item in list and return the list of results. This is like -map, but fn takes two arguments: the index of the current element within list, and the element itself.

This function's anaphoric counterpart is --map-indexed.

For a side-effecting variant, see also -each-indexed.

(-map-indexed (lambda (index item) (- item index)) '(1 2 3 4)) ;; => (1 1 1 1)
(--map-indexed (- it it-index) '(1 2 3 4)) ;; => (1 1 1 1)
(-map-indexed #'* '(1 2 3 4)) ;; => (0 2 6 12)

-annotate (fn list)

Pair each item in list with the result of passing it to fn.

Return an alist of (result . item), where each item is the corresponding element of list, and result is the value obtained by calling fn on item.

This function's anaphoric counterpart is --annotate.

(-annotate #'1+ '(1 2 3)) ;; => ((2 . 1) (3 . 2) (4 . 3))
(-annotate #'length '((f o o) (bar baz))) ;; => ((3 f o o) (2 bar baz))
(--annotate (> it 1) '(0 1 2 3)) ;; => ((nil . 0) (nil . 1) (t . 2) (t . 3))

-splice (pred fun list)

Splice lists generated by fun in place of items satisfying pred in list.

Call pred on each element of list. Whenever the result of pred is nil, leave that it as-is. Otherwise, call fun on the same it that satisfied pred. The result should be a (possibly empty) list of items to splice in place of it in list.

This can be useful as an alternative to the ,@ construct in a ``' structure, in case you need to splice several lists at marked positions (for example with keywords).

This function's anaphoric counterpart is --splice.

See also: -splice-list, -insert-at.

(-splice #'numberp (lambda (n) (list n n)) '(a 1 b 2)) ;; => (a 1 1 b 2 2)
(--splice t (list it it) '(1 2 3 4)) ;; => (1 1 2 2 3 3 4 4)
(--splice (eq it :magic) '((magical) (code)) '((foo) :magic (bar))) ;; => ((foo) (magical) (code) (bar))

-splice-list (pred new-list list)

Splice new-list in place of elements matching pred in list.

See also: -splice, -insert-at

(-splice-list 'keywordp '(a b c) '(1 :foo 2)) ;; => (1 a b c 2)
(-splice-list 'keywordp nil '(1 :foo 2)) ;; => (1 2)
(--splice-list (keywordp it) '(a b c) '(1 :foo 2)) ;; => (1 a b c 2)

-mapcat (fn list)

Return the concatenation of the result of mapping fn over list. Thus function fn should return a list.

(-mapcat 'list '(1 2 3)) ;; => (1 2 3)
(-mapcat (lambda (item) (list 0 item)) '(1 2 3)) ;; => (0 1 0 2 0 3)
(--mapcat (list 0 it) '(1 2 3)) ;; => (0 1 0 2 0 3)

-copy (list)

Create a shallow copy of list.

(-copy '(1 2 3)) ;; => (1 2 3)
(let ((a '(1 2 3))) (eq a (-copy a))) ;; => nil

Sublist selection

Functions returning a sublist of the original list.

-filter (pred list)

Return a new list of the items in list for which pred returns non-nil.

Alias: -select.

This function's anaphoric counterpart is --filter.

For similar operations, see also -keep and -remove.

(-filter (lambda (num) (= 0 (% num 2))) '(1 2 3 4)) ;; => (2 4)
(-filter #'natnump '(-2 -1 0 1 2)) ;; => (0 1 2)
(--filter (= 0 (% it 2)) '(1 2 3 4)) ;; => (2 4)

-remove (pred list)

Return a new list of the items in list for which pred returns nil.

Alias: -reject.

This function's anaphoric counterpart is --remove.

For similar operations, see also -keep and -filter.

(-remove (lambda (num) (= 0 (% num 2))) '(1 2 3 4)) ;; => (1 3)
(-remove #'natnump '(-2 -1 0 1 2)) ;; => (-2 -1)
(--remove (= 0 (% it 2)) '(1 2 3 4)) ;; => (1 3)

-remove-first (pred list)

Remove the first item from list for which pred returns non-nil. This is a non-destructive operation, but only the front of list leading up to the removed item is a copy; the rest is list's original tail. If no item is removed, then the result is a complete copy.

Alias: -reject-first.

This function's anaphoric counterpart is --remove-first.

See also -map-first, -remove-item, and -remove-last.

(-remove-first #'natnump '(-2 -1 0 1 2)) ;; => (-2 -1 1 2)
(-remove-first #'stringp '(1 2 "first" "second")) ;; => (1 2 "second")
(--remove-first (> it 3) '(1 2 3 4 5 6)) ;; => (1 2 3 5 6)

-remove-last (pred list)

Remove the last item from list for which pred returns non-nil. The result is a copy of list regardless of whether an element is removed.

Alias: -reject-last.

This function's anaphoric counterpart is --remove-last.

See also -map-last, -remove-item, and -remove-first.

(-remove-last #'natnump '(1 3 5 4 7 8 10 -11)) ;; => (1 3 5 4 7 8 -11)
(-remove-last #'stringp '(1 2 "last" "second")) ;; => (1 2 "last")
(--remove-last (> it 3) '(1 2 3 4 5 6 7 8 9 10)) ;; => (1 2 3 4 5 6 7 8 9)

-remove-item (item list)

Return a copy of list with all occurrences of item removed. The comparison is done with equal.

(-remove-item 3 '(1 2 3 2 3 4 5 3)) ;; => (1 2 2 4 5)
(-remove-item 'foo '(foo bar baz foo)) ;; => (bar baz)
(-remove-item "bob" '("alice" "bob" "eve" "bob")) ;; => ("alice" "eve")

-non-nil (list)

Return a copy of list with all nil items removed.

(-non-nil '(nil 1 nil 2 nil nil 3 4 nil 5 nil)) ;; => (1 2 3 4 5)
(-non-nil '((nil))) ;; => ((nil))
(-non-nil ()) ;; => ()

-slice (list from &optional to step)

Return copy of list, starting from index from to index to.

from or to may be negative. These values are then interpreted modulo the length of the list.

If step is a number, only each stepth item in the resulting section is returned. Defaults to 1.

(-slice '(1 2 3 4 5) 1) ;; => (2 3 4 5)
(-slice '(1 2 3 4 5) 0 3) ;; => (1 2 3)
(-slice '(1 2 3 4 5 6 7 8 9) 1 -1 2) ;; => (2 4 6 8)

-take (n list)

Return a copy of the first n items in list. Return a copy of list if it contains n items or fewer. Return nil if n is zero or less.

See also: -take-last.

(-take 3 '(1 2 3 4 5)) ;; => (1 2 3)
(-take 17 '(1 2 3 4 5)) ;; => (1 2 3 4 5)
(-take 0 '(1 2 3 4 5)) ;; => ()

-take-last (n list)

Return a copy of the last n items of list in order. Return a copy of list if it contains n items or fewer. Return nil if n is zero or less.

See also: -take.

(-take-last 3 '(1 2 3 4 5)) ;; => (3 4 5)
(-take-last 17 '(1 2 3 4 5)) ;; => (1 2 3 4 5)
(-take-last 1 '(1 2 3 4 5)) ;; => (5)

-drop (n list)

Return the tail (not a copy) of list without the first n items. Return nil if list contains n items or fewer. Return list if n is zero or less.

For another variant, see also -drop-last.

(-drop 3 '(1 2 3 4 5)) ;; => (4 5)
(-drop 17 '(1 2 3 4 5)) ;; => ()
(-drop 0 '(1 2 3 4 5)) ;; => (1 2 3 4 5)

-drop-last (n list)

Return a copy of list without its last n items. Return a copy of list if n is zero or less. Return nil if list contains n items or fewer.

See also: -drop.

(-drop-last 3 '(1 2 3 4 5)) ;; => (1 2)
(-drop-last 17 '(1 2 3 4 5)) ;; => ()
(-drop-last 0 '(1 2 3 4 5)) ;; => (1 2 3 4 5)

-take-while (pred list)

Take successive items from list for which pred returns non-nil. pred is a function of one argument. Return a new list of the successive elements from the start of list for which pred returns non-nil.

This function's anaphoric counterpart is --take-while.

For another variant, see also -drop-while.

(-take-while #'even? '(1 2 3 4)) ;; => ()
(-take-while #'even? '(2 4 5 6)) ;; => (2 4)
(--take-while (< it 4) '(1 2 3 4 3 2 1)) ;; => (1 2 3)

-drop-while (pred list)

Drop successive items from list for which pred returns non-nil. pred is a function of one argument. Return the tail (not a copy) of list starting from its first element for which pred returns nil.

This function's anaphoric counterpart is --drop-while.

For another variant, see also -take-while.

(-drop-while #'even? '(1 2 3 4)) ;; => (1 2 3 4)
(-drop-while #'even? '(2 4 5 6)) ;; => (5 6)
(--drop-while (< it 4) '(1 2 3 4 3 2 1)) ;; => (4 3 2 1)

-select-by-indices (indices list)

Return a list whose elements are elements from list selected as (nth i list) for all i from indices.

(-select-by-indices '(4 10 2 3 6) '("v" "e" "l" "o" "c" "i" "r" "a" "p" "t" "o" "r")) ;; => ("c" "o" "l" "o" "r")
(-select-by-indices '(2 1 0) '("a" "b" "c")) ;; => ("c" "b" "a")
(-select-by-indices '(0 1 2 0 1 3 3 1) '("f" "a" "r" "l")) ;; => ("f" "a" "r" "f" "a" "l" "l" "a")

-select-columns (columns table)

Select columns from table.

table is a list of lists where each element represents one row. It is assumed each row has the same length.

Each row is transformed such that only the specified columns are selected.

See also: -select-column, -select-by-indices

(-select-columns '(0 2) '((1 2 3) (a b c) (:a :b :c))) ;; => ((1 3) (a c) (:a :c))
(-select-columns '(1) '((1 2 3) (a b c) (:a :b :c))) ;; => ((2) (b) (:b))
(-select-columns nil '((1 2 3) (a b c) (:a :b :c))) ;; => (nil nil nil)

-select-column (column table)

Select column from table.

table is a list of lists where each element represents one row. It is assumed each row has the same length.

The single selected column is returned as a list.

See also: -select-columns, -select-by-indices

(-select-column 1 '((1 2 3) (a b c) (:a :b :c))) ;; => (2 b :b)

List to list

Functions returning a modified copy of the input list.

-keep (fn list)

Return a new list of the non-nil results of applying fn to each item in list. Like -filter, but returns the non-nil results of fn instead of the corresponding elements of list.

Its anaphoric counterpart is --keep.

(-keep #'cdr '((1 2 3) (4 5) (6))) ;; => ((2 3) (5))
(-keep (lambda (n) (and (> n 3) (* 10 n))) '(1 2 3 4 5 6)) ;; => (40 50 60)
(--keep (and (> it 3) (* 10 it)) '(1 2 3 4 5 6)) ;; => (40 50 60)

-concat (&rest sequences)

Concatenate all the arguments and make the result a list. The result is a list whose elements are the elements of all the arguments. Each argument may be a list, vector or string.

All arguments except the last argument are copied. The last argument is just used as the tail of the new list.

(-concat '(1)) ;; => (1)
(-concat '(1) '(2)) ;; => (1 2)
(-concat '(1) '(2 3) '(4)) ;; => (1 2 3 4)

-flatten (l)

Take a nested list l and return its contents as a single, flat list.

Note that because nil represents a list of zero elements (an empty list), any mention of nil in l will disappear after flattening. If you need to preserve nils, consider -flatten-n or map them to some unique symbol and then map them back.

Conses of two atoms are considered "terminals", that is, they aren't flattened further.

See also: -flatten-n

(-flatten '((1))) ;; => (1)
(-flatten '((1 (2 3) (((4 (5))))))) ;; => (1 2 3 4 5)
(-flatten '(1 2 (3 . 4))) ;; => (1 2 (3 . 4))

-flatten-n (num list)

Flatten num levels of a nested list.

See also: -flatten

(-flatten-n 1 '((1 2) ((3 4) ((5 6))))) ;; => (1 2 (3 4) ((5 6)))
(-flatten-n 2 '((1 2) ((3 4) ((5 6))))) ;; => (1 2 3 4 (5 6))
(-flatten-n 3 '((1 2) ((3 4) ((5 6))))) ;; => (1 2 3 4 5 6)

-replace (old new list)

Replace all old items in list with new.

Elements are compared using equal.

See also: -replace-at

(-replace 1 "1" '(1 2 3 4 3 2 1)) ;; => ("1" 2 3 4 3 2 "1")
(-replace "foo" "bar" '("a" "nice" "foo" "sentence" "about" "foo")) ;; => ("a" "nice" "bar" "sentence" "about" "bar")
(-replace 1 2 nil) ;; => nil

-replace-first (old new list)

Replace the first occurrence of old with new in list.

Elements are compared using equal.

See also: -map-first

(-replace-first 1 "1" '(1 2 3 4 3 2 1)) ;; => ("1" 2 3 4 3 2 1)
(-replace-first "foo" "bar" '("a" "nice" "foo" "sentence" "about" "foo")) ;; => ("a" "nice" "bar" "sentence" "about" "foo")
(-replace-first 1 2 nil) ;; => nil

-replace-last (old new list)

Replace the last occurrence of old with new in list.

Elements are compared using equal.

See also: -map-last

(-replace-last 1 "1" '(1 2 3 4 3 2 1)) ;; => (1 2 3 4 3 2 "1")
(-replace-last "foo" "bar" '("a" "nice" "foo" "sentence" "about" "foo")) ;; => ("a" "nice" "foo" "sentence" "about" "bar")
(-replace-last 1 2 nil) ;; => nil

-insert-at (n x list)

Return a list with x inserted into list at position n.

See also: -splice, -splice-list

(-insert-at 1 'x '(a b c)) ;; => (a x b c)
(-insert-at 12 'x '(a b c)) ;; => (a b c x)

-replace-at (n x list)

Return a list with element at nth position in list replaced with x.

See also: -replace

(-replace-at 0 9 '(0 1 2 3 4 5)) ;; => (9 1 2 3 4 5)
(-replace-at 1 9 '(0 1 2 3 4 5)) ;; => (0 9 2 3 4 5)
(-replace-at 4 9 '(0 1 2 3 4 5)) ;; => (0 1 2 3 9 5)

-update-at (n func list)

Use func to update the nth element of list. Return a copy of list where the nth element is replaced with the result of calling func on it.

See also: -map-when

(-update-at 0 (lambda (x) (+ x 9)) '(0 1 2 3 4 5)) ;; => (9 1 2 3 4 5)
(-update-at 1 (lambda (x) (+ x 8)) '(0 1 2 3 4 5)) ;; => (0 9 2 3 4 5)
(--update-at 2 (length it) '("foo" "bar" "baz" "quux")) ;; => ("foo" "bar" 3 "quux")

-remove-at (n list)

Return list with its element at index n removed. That is, remove any element selected as (nth n list) from list and return the result.

This is a non-destructive operation: parts of list (but not necessarily all of it) are copied as needed to avoid destructively modifying it.

See also: -remove-at-indices, -remove.

(-remove-at 0 '(a b c)) ;; => (b c)
(-remove-at 1 '(a b c)) ;; => (a c)
(-remove-at 2 '(a b c)) ;; => (a b)

-remove-at-indices (indices list)

Return list with its elements at indices removed. That is, for each index i in indices, remove any element selected as (nth i list) from list.

This is a non-destructive operation: parts of list (but not necessarily all of it) are copied as needed to avoid destructively modifying it.

See also: -remove-at, -remove.

(-remove-at-indices '(0) '(a b c d e)) ;; => (b c d e)
(-remove-at-indices '(1 3) '(a b c d e)) ;; => (a c e)
(-remove-at-indices '(4 0 2) '(a b c d e)) ;; => (b d)

Reductions

Functions reducing lists to a single value (which may also be a list).

-reduce-from (fn init list)

Reduce the function fn across list, starting with init. Return the result of applying fn to init and the first element of list, then applying fn to that result and the second element, etc. If list is empty, return init without calling fn.

This function's anaphoric counterpart is --reduce-from.

For other folds, see also -reduce and -reduce-r.

(-reduce-from #'- 10 '(1 2 3)) ;; => 4
(-reduce-from #'list 10 '(1 2 3)) ;; => (((10 1) 2) 3)
(--reduce-from (concat acc " " it) "START" '("a" "b" "c")) ;; => "START a b c"

-reduce-r-from (fn init list)

Reduce the function fn across list in reverse, starting with init. Return the result of applying fn to the last element of list and init, then applying fn to the second-to-last element and the previous result of fn, etc. That is, the first argument of fn is the current element, and its second argument the accumulated value. If list is empty, return init without calling fn.

This function is like -reduce-from but the operation associates from the right rather than left. In other words, it starts from the end of list and flips the arguments to fn. Conceptually, it is like replacing the conses in list with applications of fn, and its last link with init, and evaluating the resulting expression.

This function's anaphoric counterpart is --reduce-r-from.

For other folds, see also -reduce-r and -reduce.

(-reduce-r-from #'- 10 '(1 2 3)) ;; => -8
(-reduce-r-from #'list 10 '(1 2 3)) ;; => (1 (2 (3 10)))
(--reduce-r-from (concat it " " acc) "END" '("a" "b" "c")) ;; => "a b c END"

-reduce (fn list)

Reduce the function fn across list. Return the result of applying fn to the first two elements of list, then applying fn to that result and the third element, etc. If list contains a single element, return it without calling fn. If list is empty, return the result of calling fn with no arguments.

This function's anaphoric counterpart is --reduce.

For other folds, see also -reduce-from and -reduce-r.

(-reduce #'- '(1 2 3 4)) ;; => -8
(-reduce #'list '(1 2 3 4)) ;; => (((1 2) 3) 4)
(--reduce (format "%s-%d" acc it) '(1 2 3)) ;; => "1-2-3"

-reduce-r (fn list)

Reduce the function fn across list in reverse. Return the result of applying fn to the last two elements of list, then applying fn to the third-to-last element and the previous result of fn, etc. That is, the first argument of fn is the current element, and its second argument the accumulated value. If list contains a single element, return it without calling fn. If list is empty, return the result of calling fn with no arguments.

This function is like -reduce but the operation associates from the right rather than left. In other words, it starts from the end of list and flips the arguments to fn. Conceptually, it is like replacing the conses in list with applications of fn, ignoring its last link, and evaluating the resulting expression.

This function's anaphoric counterpart is --reduce-r.

For other folds, see also -reduce-r-from and -reduce.

(-reduce-r #'- '(1 2 3 4)) ;; => -2
(-reduce-r #'list '(1 2 3 4)) ;; => (1 (2 (3 4)))
(--reduce-r (format "%s-%d" acc it) '(1 2 3)) ;; => "3-2-1"

-reductions-from (fn init list)

Return a list of fn's intermediate reductions across list. That is, a list of the intermediate values of the accumulator when -reduce-from (which see) is called with the same arguments.

This function's anaphoric counterpart is --reductions-from.

For other folds, see also -reductions and -reductions-r.

(-reductions-from #'max 0 '(2 1 4 3)) ;; => (0 2 2 4 4)
(-reductions-from #'* 1 '(1 2 3 4)) ;; => (1 1 2 6 24)
(--reductions-from (format "(FN %s %d)" acc it) "INIT" '(1 2 3)) ;; => ("INIT" "(FN INIT 1)" "(FN (FN INIT 1) 2)" "(FN (FN (FN INIT 1) 2) 3)")

-reductions-r-from (fn init list)

Return a list of fn's intermediate reductions across reversed list. That is, a list of the intermediate values of the accumulator when -reduce-r-from (which see) is called with the same arguments.

This function's anaphoric counterpart is --reductions-r-from.

For other folds, see also -reductions and -reductions-r.

(-reductions-r-from #'max 0 '(2 1 4 3)) ;; => (4 4 4 3 0)
(-reductions-r-from #'* 1 '(1 2 3 4)) ;; => (24 24 12 4 1)
(--reductions-r-from (format "(FN %d %s)" it acc) "INIT" '(1 2 3)) ;; => ("(FN 1 (FN 2 (FN 3 INIT)))" "(FN 2 (FN 3 INIT))" "(FN 3 INIT)" "INIT")

-reductions (fn list)

Return a list of fn's intermediate reductions across list. That is, a list of the intermediate values of the accumulator when -reduce (which see) is called with the same arguments.

This function's anaphoric counterpart is --reductions.

For other folds, see also -reductions and -reductions-r.

(-reductions #'+ '(1 2 3 4)) ;; => (1 3 6 10)
(-reductions #'* '(1 2 3 4)) ;; => (1 2 6 24)
(--reductions (format "(FN %s %d)" acc it) '(1 2 3)) ;; => (1 "(FN 1 2)" "(FN (FN 1 2) 3)")

-reductions-r (fn list)

Return a list of fn's intermediate reductions across reversed list. That is, a list of the intermediate values of the accumulator when -reduce-r (which see) is called with the same arguments.

This function's anaphoric counterpart is --reductions-r.

For other folds, see also -reductions-r-from and -reductions.

(-reductions-r #'+ '(1 2 3 4)) ;; => (10 9 7 4)
(-reductions-r #'* '(1 2 3 4)) ;; => (24 24 12 4)
(--reductions-r (format "(FN %d %s)" it acc) '(1 2 3)) ;; => ("(FN 1 (FN 2 3))" "(FN 2 3)" 3)

-count (pred list)

Counts the number of items in list where (pred item) is non-nil.

(-count 'even? '(1 2 3 4 5)) ;; => 2
(--count (< it 4) '(1 2 3 4)) ;; => 3

-sum (list)

Return the sum of list.

(-sum ()) ;; => 0
(-sum '(1)) ;; => 1
(-sum '(1 2 3 4)) ;; => 10

-running-sum (list)

Return a list with running sums of items in list. list must be non-empty.

(-running-sum '(1 2 3 4)) ;; => (1 3 6 10)
(-running-sum '(1)) ;; => (1)
(-running-sum ()) ;; Wrong type argument: consp, nil

-product (list)

Return the product of list.

(-product ()) ;; => 1
(-product '(1)) ;; => 1
(-product '(1 2 3 4)) ;; => 24

-running-product (list)

Return a list with running products of items in list. list must be non-empty.

(-running-product '(1 2 3 4)) ;; => (1 2 6 24)
(-running-product '(1)) ;; => (1)
(-running-product ()) ;; Wrong type argument: consp, nil

-inits (list)

Return all prefixes of list.

(-inits '(1 2 3 4)) ;; => (nil (1) (1 2) (1 2 3) (1 2 3 4))
(-inits nil) ;; => (nil)
(-inits '(1)) ;; => (nil (1))

-tails (list)

Return all suffixes of list.

(-tails '(1 2 3 4)) ;; => ((1 2 3 4) (2 3 4) (3 4) (4) nil)
(-tails nil) ;; => (nil)
(-tails '(1)) ;; => ((1) nil)

-common-prefix (&rest lists)

Return the longest common prefix of lists.

(-common-prefix '(1)) ;; => (1)
(-common-prefix '(1 2) '(3 4) '(1 2)) ;; => ()
(-common-prefix '(1 2) '(1 2 3) '(1 2 3 4)) ;; => (1 2)

-common-suffix (&rest lists)

Return the longest common suffix of lists.

(-common-suffix '(1)) ;; => (1)
(-common-suffix '(1 2) '(3 4) '(1 2)) ;; => ()
(-common-suffix '(1 2 3 4) '(2 3 4) '(3 4)) ;; => (3 4)

-min (list)

Return the smallest value from list of numbers or markers.

(-min '(0)) ;; => 0
(-min '(3 2 1)) ;; => 1
(-min '(1 2 3)) ;; => 1

-min-by (comparator list)

Take a comparison function comparator and a list and return the least element of the list by the comparison function.

See also combinator -on which can transform the values before comparing them.

(-min-by '> '(4 3 6 1)) ;; => 1
(--min-by (> (car it) (car other)) '((1 2 3) (2) (3 2))) ;; => (1 2 3)
(--min-by (> (length it) (length other)) '((1 2 3) (2) (3 2))) ;; => (2)

-max (list)

Return the largest value from list of numbers or markers.

(-max '(0)) ;; => 0
(-max '(3 2 1)) ;; => 3
(-max '(1 2 3)) ;; => 3

-max-by (comparator list)

Take a comparison function comparator and a list and return the greatest element of the list by the comparison function.

See also combinator -on which can transform the values before comparing them.

(-max-by '> '(4 3 6 1)) ;; => 6
(--max-by (> (car it) (car other)) '((1 2 3) (2) (3 2))) ;; => (3 2)
(--max-by (> (length it) (length other)) '((1 2 3) (2) (3 2))) ;; => (1 2 3)

-frequencies (list)

Count the occurrences of each distinct element of list.

Return an alist of (element . n), where each element occurs n times in list.

The test for equality is done with equal, or with -compare-fn if that is non-nil.

See also -count and -group-by.

(-frequencies ()) ;; => ()
(-frequencies '(1 2 3 1 2 1)) ;; => ((1 . 3) (2 . 2) (3 . 1))
(let ((-compare-fn #'string=)) (-frequencies '(a "a"))) ;; => ((a . 2))

Unfolding

Operations dual to reductions, building lists from a seed value rather than consuming a list to produce a single value.

-iterate (fun init n)

Return a list of iterated applications of fun to init.

This means a list of the form:

(`init` (`fun` `init`) (`fun` (`fun` `init`)) ...)

n is the length of the returned list.

(-iterate #'1+ 1 10) ;; => (1 2 3 4 5 6 7 8 9 10)
(-iterate (lambda (x) (+ x x)) 2 5) ;; => (2 4 8 16 32)
(--iterate (* it it) 2 5) ;; => (2 4 16 256 65536)

-unfold (fun seed)

Build a list from seed using fun.

This is "dual" operation to -reduce-r: while -reduce-r consumes a list to produce a single value, -unfold takes a seed value and builds a (potentially infinite!) list.

fun should return nil to stop the generating process, or a cons (a . b), where a will be prepended to the result and b is the new seed.

(-unfold (lambda (x) (unless (= x 0) (cons x (1- x)))) 10) ;; => (10 9 8 7 6 5 4 3 2 1)
(--unfold (when it (cons it (cdr it))) '(1 2 3 4)) ;; => ((1 2 3 4) (2 3 4) (3 4) (4))
(--unfold (when it (cons it (butlast it))) '(1 2 3 4)) ;; => ((1 2 3 4) (1 2 3) (1 2) (1))

-repeat (n x)

Return a new list of length n with each element being x. Return nil if n is less than 1.

(-repeat 3 :a) ;; => (:a :a :a)
(-repeat 1 :a) ;; => (:a)
(-repeat 0 :a) ;; => ()

-cycle (list)

Return an infinite circular copy of list. The returned list cycles through the elements of list and repeats from the beginning.

(-take 5 (-cycle '(1 2 3))) ;; => (1 2 3 1 2)
(-take 7 (-cycle '(1 "and" 3))) ;; => (1 "and" 3 1 "and" 3 1)
(-zip-lists (-cycle '(3)) '(1 2)) ;; => ((3 1) (3 2))

Predicates

Reductions of one or more lists to a boolean value.

-some (pred list)

Return (pred x) for the first list item where (pred x) is non-nil, else nil.

Alias: -any.

This function's anaphoric counterpart is --some.

(-some #'stringp '(1 "2" 3)) ;; => t
(--some (string-match-p "x" it) '("foo" "axe" "xor")) ;; => 1
(--some (= it-index 3) '(0 1 2)) ;; => nil

-every (pred list)

Return non-nil if pred returns non-nil for all items in list. If so, return the last such result of pred. Otherwise, once an item is reached for which pred returns nil, return nil without calling pred on any further list elements.

This function is like -every-p, but on success returns the last non-nil result of pred instead of just t.

This function's anaphoric counterpart is --every.

(-every #'numberp '(1 2 3)) ;; => t
(--every (string-match-p "x" it) '("axe" "xor")) ;; => 0
(--every (= it it-index) '(0 1 3)) ;; => nil

-any? (pred list)

Return t if (pred x) is non-nil for any x in list, else nil.

Alias: -any-p, -some?, -some-p

(-any? #'numberp '(nil 0 t)) ;; => t
(-any? #'numberp '(nil t t)) ;; => nil
(-any? #'null '(1 3 5)) ;; => nil

-all? (pred list)

Return t if (pred x) is non-nil for all x in list, else nil. In the latter case, stop after the first x for which (pred x) is nil, without calling pred on any subsequent elements of list.

The similar function -every is more widely useful, since it returns the last non-nil result of pred instead of just t on success.

Alias: -all-p, -every-p, -every?.

This function's anaphoric counterpart is --all?.

(-all? #'numberp '(1 2 3)) ;; => t
(-all? #'numberp '(2 t 6)) ;; => nil
(--all? (= 0 (% it 2)) '(2 4 6)) ;; => t

-none? (pred list)

Return t if (pred x) is nil for all x in list, else nil.

Alias: -none-p

(-none? 'even? '(1 2 3)) ;; => nil
(-none? 'even? '(1 3 5)) ;; => t
(--none? (= 0 (% it 2)) '(1 2 3)) ;; => nil

-only-some? (pred list)

Return t if different list items both satisfy and do not satisfy pred. That is, if pred returns both nil for at least one item, and non-nil for at least one other item in list. Return nil if all items satisfy the predicate or none of them do.

Alias: -only-some-p

(-only-some? 'even? '(1 2 3)) ;; => t
(-only-some? 'even? '(1 3 5)) ;; => nil
(-only-some? 'even? '(2 4 6)) ;; => nil

-contains? (list element)

Return non-nil if list contains element.

The test for equality is done with equal, or with -compare-fn if that is non-nil. As with member, the return value is actually the tail of list whose car is element.

Alias: -contains-p.

(-contains? '(1 2 3) 1) ;; => (1 2 3)
(-contains? '(1 2 3) 2) ;; => (2 3)
(-contains? '(1 2 3) 4) ;; => ()

-is-prefix? (prefix list)

Return non-nil if prefix is a prefix of list.

Alias: -is-prefix-p.

(-is-prefix? '(1 2 3) '(1 2 3 4 5)) ;; => t
(-is-prefix? '(1 2 3 4 5) '(1 2 3)) ;; => nil
(-is-prefix? '(1 3) '(1 2 3 4 5)) ;; => nil

-is-suffix? (suffix list)

Return non-nil if suffix is a suffix of list.

Alias: -is-suffix-p.

(-is-suffix? '(3 4 5) '(1 2 3 4 5)) ;; => t
(-is-suffix? '(1 2 3 4 5) '(3 4 5)) ;; => nil
(-is-suffix? '(3 5) '(1 2 3 4 5)) ;; => nil

-is-infix? (infix list)

Return non-nil if infix is infix of list.

This operation runs in O(n^2) time

Alias: -is-infix-p

(-is-infix? '(1 2 3) '(1 2 3 4 5)) ;; => t
(-is-infix? '(2 3 4) '(1 2 3 4 5)) ;; => t
(-is-infix? '(3 4 5) '(1 2 3 4 5)) ;; => t

-cons-pair? (obj)

Return non-nil if obj is a true cons pair. That is, a cons (a . b) where b is not a list.

Alias: -cons-pair-p.

(-cons-pair? '(1 . 2)) ;; => t
(-cons-pair? '(1 2)) ;; => nil
(-cons-pair? '(1)) ;; => nil

Partitioning

Functions partitioning the input list into a list of lists.

-split-at (n list)

Split list into two sublists after the nth element. The result is a list of two elements (take drop) where take is a new list of the first n elements of list, and drop is the remaining elements of list (not a copy). take and drop are like the results of -take and -drop, respectively, but the split is done in a single list traversal.

(-split-at 3 '(1 2 3 4 5)) ;; => ((1 2 3) (4 5))
(-split-at 17 '(1 2 3 4 5)) ;; => ((1 2 3 4 5) nil)
(-split-at 0 '(1 2 3 4 5)) ;; => (nil (1 2 3 4 5))

-split-with (pred list)

Split list into a prefix satisfying pred, and the rest. The first sublist is the prefix of list with successive elements satisfying pred, and the second sublist is the remaining elements that do not. The result is like performing

((-take-while `pred` `list`) (-drop-while `pred` `list`))

but in no more than a single pass through list.

(-split-with 'even? '(1 2 3 4)) ;; => (nil (1 2 3 4))
(-split-with 'even? '(2 4 5 6)) ;; => ((2 4) (5 6))
(--split-with (< it 4) '(1 2 3 4 3 2 1)) ;; => ((1 2 3) (4 3 2 1))

-split-on (item list)

Split the list each time item is found.

Unlike -partition-by, the item is discarded from the results. Empty lists are also removed from the result.

Comparison is done by equal.

See also -split-when

(-split-on '| '(Nil | Leaf a | Node [Tree a])) ;; => ((Nil) (Leaf a) (Node [Tree a]))
(-split-on :endgroup '("a" "b" :endgroup "c" :endgroup "d" "e")) ;; => (("a" "b") ("c") ("d" "e"))
(-split-on :endgroup '("a" "b" :endgroup :endgroup "d" "e")) ;; => (("a" "b") ("d" "e"))

-split-when (fn list)

Split the list on each element where fn returns non-nil.

Unlike -partition-by, the "matched" element is discarded from the results. Empty lists are also removed from the result.

This function can be thought of as a generalization of split-string.

(-split-when 'even? '(1 2 3 4 5 6)) ;; => ((1) (3) (5))
(-split-when 'even? '(1 2 3 4 6 8 9)) ;; => ((1) (3) (9))
(--split-when (memq it '(&optional &rest)) '(a b &optional c d &rest args)) ;; => ((a b) (c d) (args))

-separate (pred list)

Split list into two sublists based on whether items satisfy pred. The result is like performing

((-filter `pred` `list`) (-remove `pred` `list`))

but in a single pass through list.

(-separate (lambda (num) (= 0 (% num 2))) '(1 2 3 4 5 6 7)) ;; => ((2 4 6) (1 3 5 7))
(--separate (< it 5) '(3 7 5 9 3 2 1 4 6)) ;; => ((3 3 2 1 4) (7 5 9 6))
(-separate 'cdr '((1 2) (1) (1 2 3) (4))) ;; => (((1 2) (1 2 3)) ((1) (4)))

-partition (n list)

Return a new list with the items in list grouped into n-sized sublists. If there are not enough items to make the last group n-sized, those items are discarded.

(-partition 2 '(1 2 3 4 5 6)) ;; => ((1 2) (3 4) (5 6))
(-partition 2 '(1 2 3 4 5 6 7)) ;; => ((1 2) (3 4) (5 6))
(-partition 3 '(1 2 3 4 5 6 7)) ;; => ((1 2 3) (4 5 6))

-partition-all (n list)

Return a new list with the items in list grouped into n-sized sublists. The last group may contain less than n items.

(-partition-all 2 '(1 2 3 4 5 6)) ;; => ((1 2) (3 4) (5 6))
(-partition-all 2 '(1 2 3 4 5 6 7)) ;; => ((1 2) (3 4) (5 6) (7))
(-partition-all 3 '(1 2 3 4 5 6 7)) ;; => ((1 2 3) (4 5 6) (7))

-partition-in-steps (n step list)

Partition list into sublists of length n that are step items apart. Like -partition-all-in-steps, but if there are not enough items to make the last group n-sized, those items are discarded.

(-partition-in-steps 2 1 '(1 2 3 4)) ;; => ((1 2) (2 3) (3 4))
(-partition-in-steps 3 2 '(1 2 3 4)) ;; => ((1 2 3))
(-partition-in-steps 3 2 '(1 2 3 4 5)) ;; => ((1 2 3) (3 4 5))

-partition-all-in-steps (n step list)

Partition list into sublists of length n that are step items apart. Adjacent groups may overlap if n exceeds the step stride. Trailing groups may contain less than n items.

(-partition-all-in-steps 2 1 '(1 2 3 4)) ;; => ((1 2) (2 3) (3 4) (4))
(-partition-all-in-steps 3 2 '(1 2 3 4)) ;; => ((1 2 3) (3 4))
(-partition-all-in-steps 3 2 '(1 2 3 4 5)) ;; => ((1 2 3) (3 4 5) (5))

-partition-by (fn list)

Apply fn to each item in list, splitting it each time fn returns a new value.

(-partition-by 'even? ()) ;; => ()
(-partition-by 'even? '(1 1 2 2 2 3 4 6 8)) ;; => ((1 1) (2 2 2) (3) (4 6 8))
(--partition-by (< it 3) '(1 2 3 4 3 2 1)) ;; => ((1 2) (3 4 3) (2 1))

-partition-by-header (fn list)

Apply fn to the first item in list. That is the header value. Apply fn to each item in list, splitting it each time fn returns the header value, but only after seeing at least one other value (the body).

(--partition-by-header (= it 1) '(1 2 3 1 2 1 2 3 4)) ;; => ((1 2 3) (1 2) (1 2 3 4))
(--partition-by-header (> it 0) '(1 2 0 1 0 1 2 3 0)) ;; => ((1 2 0) (1 0) (1 2 3 0))
(-partition-by-header 'even? '(2 1 1 1 4 1 3 5 6 6 1)) ;; => ((2 1 1 1) (4 1 3 5) (6 6 1))

-partition-after-pred (pred list)

Partition list after each element for which pred returns non-nil.

This function's anaphoric counterpart is --partition-after-pred.

(-partition-after-pred #'booleanp ()) ;; => ()
(-partition-after-pred #'booleanp '(t t)) ;; => ((t) (t))
(-partition-after-pred #'booleanp '(0 0 t t 0 t)) ;; => ((0 0 t) (t) (0 t))

-partition-before-pred (pred list)

Partition directly before each time pred is true on an element of list.

(-partition-before-pred #'booleanp ()) ;; => ()
(-partition-before-pred #'booleanp '(0 t)) ;; => ((0) (t))
(-partition-before-pred #'booleanp '(0 0 t 0 t t)) ;; => ((0 0) (t 0) (t) (t))

-partition-before-item (item list)

Partition directly before each time item appears in list.

(-partition-before-item 3 ()) ;; => ()
(-partition-before-item 3 '(1)) ;; => ((1))
(-partition-before-item 3 '(3)) ;; => ((3))

-partition-after-item (item list)

Partition directly after each time item appears in list.

(-partition-after-item 3 ()) ;; => ()
(-partition-after-item 3 '(1)) ;; => ((1))
(-partition-after-item 3 '(3)) ;; => ((3))

-group-by (fn list)

Separate list into an alist whose keys are fn applied to the elements of list. Keys are compared by equal.

(-group-by 'even? ()) ;; => ()
(-group-by 'even? '(1 1 2 2 2 3 4 6 8)) ;; => ((nil 1 1 3) (t 2 2 2 4 6 8))
(--group-by (car (split-string it "/")) '("a/b" "c/d" "a/e")) ;; => (("a" "a/b" "a/e") ("c" "c/d"))

Indexing

Functions retrieving or sorting based on list indices and related predicates.

-elem-index (elem list)

Return the first index of elem in list. That is, the index within list of the first element that is equal to elem. Return nil if there is no such element.

See also: -find-index.

(-elem-index 2 '(6 7 8 3 4)) ;; => nil
(-elem-index "bar" '("foo" "bar" "baz")) ;; => 1
(-elem-index '(1 2) '((3) (5 6) (1 2) nil)) ;; => 2

-elem-indices (elem list)

Return the list of indices at which elem appears in list. That is, the indices of all elements of list equal to elem, in the same ascending order as they appear in list.

(-elem-indices 2 '(6 7 8 3 4 1)) ;; => ()
(-elem-indices "bar" '("foo" "bar" "baz")) ;; => (1)
(-elem-indices '(1 2) '((3) (1 2) (5 6) (1 2) nil)) ;; => (1 3)

-find-index (pred list)

Return the index of the first item satisfying pred in list. Return nil if no such item is found.

pred is called with one argument, the current list element, until it returns non-nil, at which point the search terminates.

This function's anaphoric counterpart is --find-index.

See also: -first, -find-last-index.

(-find-index #'numberp '(a b c)) ;; => nil
(-find-index #'natnump '(1 0 -1)) ;; => 0
(--find-index (> it 5) '(2 4 1 6 3 3 5 8)) ;; => 3

-find-last-index (pred list)

Return the index of the last item satisfying pred in list. Return nil if no such item is found.

Predicate pred is called with one argument each time, namely the current list element.

This function's anaphoric counterpart is --find-last-index.

See also: -last, -find-index.

(-find-last-index #'numberp '(a b c)) ;; => nil
(--find-last-index (> it 5) '(2 7 1 6 3 8 5 2)) ;; => 5
(-find-last-index (-partial #'string< 'a) '(c b a)) ;; => 1

-find-indices (pred list)

Return the list of indices in list satisfying pred.

Each element of list in turn is passed to pred. If the result is non-nil, the index of that element in list is included in the result. The returned indices are in ascending order, i.e., in the same order as they appear in list.

This function's anaphoric counterpart is --find-indices.

See also: -find-index, -elem-indices.

(-find-indices #'numberp '(a b c)) ;; => ()
(-find-indices #'numberp '(8 1 d 2 b c a 3)) ;; => (0 1 3 7)
(--find-indices (> it 5) '(2 4 1 6 3 3 5 8)) ;; => (3 7)

-grade-up (comparator list)

Grade elements of list using comparator relation. This yields a permutation vector such that applying this permutation to list sorts it in ascending order.

(-grade-up #'< '(3 1 4 2 1 3 3)) ;; => (1 4 3 0 5 6 2)
(let ((l '(3 1 4 2 1 3 3))) (-select-by-indices (-grade-up #'< l) l)) ;; => (1 1 2 3 3 3 4)

-grade-down (comparator list)

Grade elements of list using comparator relation. This yields a permutation vector such that applying this permutation to list sorts it in descending order.

(-grade-down #'< '(3 1 4 2 1 3 3)) ;; => (2 0 5 6 3 1 4)
(let ((l '(3 1 4 2 1 3 3))) (-select-by-indices (-grade-down #'< l) l)) ;; => (4 3 3 3 2 1 1)

Set operations

Operations pretending lists are sets.

-union (list1 list2)

Return a new list of distinct elements appearing in either list1 or list2.

The test for equality is done with equal, or with -compare-fn if that is non-nil.

(-union '(1 2 3) '(3 4 5)) ;; => (1 2 3 4 5)
(-union '(1 2 2 4) ()) ;; => (1 2 4)
(-union '(1 1 2 2) '(4 4 3 2 1)) ;; => (1 2 4 3)

-difference (list1 list2)

Return a new list with the distinct members of list1 that are not in list2.

The test for equality is done with equal, or with -compare-fn if that is non-nil.

(-difference () ()) ;; => ()
(-difference '(1 2 3) '(4 5 6)) ;; => (1 2 3)
(-difference '(1 2 3 4) '(3 4 5 6)) ;; => (1 2)

-intersection (list1 list2)

Return a new list of distinct elements appearing in both list1 and list2.

The test for equality is done with equal, or with -compare-fn if that is non-nil.

(-intersection () ()) ;; => ()
(-intersection '(1 2 3) '(4 5 6)) ;; => ()
(-intersection '(1 2 2 3) '(4 3 3 2)) ;; => (2 3)

-powerset (list)

Return the power set of list.

(-powerset ()) ;; => (nil)
(-powerset '(x y)) ;; => ((x y) (x) (y) nil)
(-powerset '(x y z)) ;; => ((x y z) (x y) (x z) (x) (y z) (y) (z) nil)

-permutations (list)

Return the distinct permutations of list.

Duplicate elements of list are determined by equal, or by -compare-fn if that is non-nil.

(-permutations ()) ;; => (nil)
(-permutations '(a a b)) ;; => ((a a b) (a b a) (b a a))
(-permutations '(a b c)) ;; => ((a b c) (a c b) (b a c) (b c a) (c a b) (c b a))

-distinct (list)

Return a copy of list with all duplicate elements removed.

The test for equality is done with equal, or with -compare-fn if that is non-nil.

Alias: -uniq.

(-distinct ()) ;; => ()
(-distinct '(1 1 2 3 3)) ;; => (1 2 3)
(-distinct '(t t t)) ;; => (t)

-same-items? (list1 list2)

Return non-nil if list1 and list2 have the same distinct elements.

The order of the elements in the lists does not matter. The lists may be of different lengths, i.e., contain duplicate elements. The test for equality is done with equal, or with -compare-fn if that is non-nil.

Alias: -same-items-p.

(-same-items? '(1 2 3) '(1 2 3)) ;; => t
(-same-items? '(1 1 2 3) '(3 3 2 1)) ;; => t
(-same-items? '(1 2 3) '(1 2 3 4)) ;; => nil

Other list operations

Other list functions not fit to be classified elsewhere.

-rotate (n list)

Rotate list n places to the right (left if n is negative). The time complexity is O(n).

(-rotate 3 '(1 2 3 4 5 6 7)) ;; => (5 6 7 1 2 3 4)
(-rotate -3 '(1 2 3 4 5 6 7)) ;; => (4 5 6 7 1 2 3)
(-rotate 16 '(1 2 3 4 5 6 7)) ;; => (6 7 1 2 3 4 5)

-cons* (&rest args)

Make a new list from the elements of args. The last 2 elements of args are used as the final cons of the result, so if the final element of args is not a list, the result is a dotted list. With no args, return nil.

(-cons* 1 2) ;; => (1 . 2)
(-cons* 1 2 3) ;; => (1 2 . 3)
(-cons* 1) ;; => 1

-snoc (list elem &rest elements)

Append elem to the end of the list.

This is like cons, but operates on the end of list.

If any elements are given, append them to the list as well.

(-snoc '(1 2 3) 4) ;; => (1 2 3 4)
(-snoc '(1 2 3) 4 5 6) ;; => (1 2 3 4 5 6)
(-snoc '(1 2 3) '(4 5 6)) ;; => (1 2 3 (4 5 6))

-interpose (sep list)

Return a new list of all elements in list separated by sep.

(-interpose "-" ()) ;; => ()
(-interpose "-" '("a")) ;; => ("a")
(-interpose "-" '("a" "b" "c")) ;; => ("a" "-" "b" "-" "c")

-interleave (&rest lists)

Return a new list of the first item in each list, then the second etc.

(-interleave '(1 2) '("a" "b")) ;; => (1 "a" 2 "b")
(-interleave '(1 2) '("a" "b") '("A" "B")) ;; => (1 "a" "A" 2 "b" "B")
(-interleave '(1 2 3) '("a" "b")) ;; => (1 "a" 2 "b")

-iota (count &optional start step)

Return a list containing count numbers. Starts from start and adds step each time. The default start is zero, the default step is 1. This function takes its name from the corresponding primitive in the apl language.

(-iota 6) ;; => (0 1 2 3 4 5)
(-iota 4 2.5 -2) ;; => (2.5 0.5 -1.5 -3.5)
(-iota -1) ;; Wrong type argument: natnump, -1

-zip-with (fn list1 list2)

Zip list1 and list2 into a new list using the function fn. That is, apply fn pairwise taking as first argument the next element of list1 and as second argument the next element of list2 at the corresponding position. The result is as long as the shorter list.

This function's anaphoric counterpart is --zip-with.

For other zips, see also -zip-lists and -zip-fill.

(-zip-with #'+ '(1 2 3 4) '(5 6 7)) ;; => (6 8 10)
(-zip-with #'cons '(1 2 3) '(4 5 6 7)) ;; => ((1 . 4) (2 . 5) (3 . 6))
(--zip-with (format "%s & %s" it other) '(Batman Jekyll) '(Robin Hyde)) ;; => ("Batman & Robin" "Jekyll & Hyde")

-zip-pair (list1 list2)

Zip list1 and list2 together.

Make a pair with the head of each list, followed by a pair with the second element of each list, and so on. The number of pairs returned is equal to the length of the shorter input list.

See also: -zip-lists.

(-zip-pair '(1 2 3 4) '(5 6 7)) ;; => ((1 . 5) (2 . 6) (3 . 7))
(-zip-pair '(1 2 3) '(4 5 6)) ;; => ((1 . 4) (2 . 5) (3 . 6))
(-zip-pair '(1 2) '(3)) ;; => ((1 . 3))

-zip-lists (&rest lists)

Zip lists together.

Group the head of each list, followed by the second element of each list, and so on. The number of returned groupings is equal to the length of the shortest input list, and the length of each grouping is equal to the number of input lists.

The return value is always a list of proper lists, in contrast to -zip which returns a list of dotted pairs when only two input lists are provided.

See also: -zip-pair.

(-zip-lists '(1 2 3) '(4 5 6)) ;; => ((1 4) (2 5) (3 6))
(-zip-lists '(1 2 3) '(4 5 6 7)) ;; => ((1 4) (2 5) (3 6))
(-zip-lists '(1 2) '(3 4 5) '(6)) ;; => ((1 3 6))

-zip-lists-fill (fill-value &rest lists)

Zip lists together, padding shorter lists with fill-value. This is like -zip-lists (which see), except it retains all elements at positions beyond the end of the shortest list. The number of returned groupings is equal to the length of the longest input list, and the length of each grouping is equal to the number of input lists.

(-zip-lists-fill 0 '(1 2) '(3 4 5) '(6)) ;; => ((1 3 6) (2 4 0) (0 5 0))
(-zip-lists-fill 0 '(1 2) '(3 4) '(5 6)) ;; => ((1 3 5) (2 4 6))
(-zip-lists-fill 0 '(1 2 3) nil) ;; => ((1 0) (2 0) (3 0))

-zip (&rest lists)

Zip lists together.

Group the head of each list, followed by the second element of each list, and so on. The number of returned groupings is equal to the length of the shortest input list, and the number of items in each grouping is equal to the number of input lists.

If only two lists are provided as arguments, return the groupings as a list of dotted pairs. Otherwise, return the groupings as a list of proper lists.

Since the return value changes form depending on the number of arguments, it is generally recommended to use -zip-lists instead, or -zip-pair if a list of dotted pairs is desired.

See also: -unzip.

(-zip '(1 2 3 4) '(5 6 7) '(8 9)) ;; => ((1 5 8) (2 6 9))
(-zip '(1 2 3) '(4 5 6) '(7 8 9)) ;; => ((1 4 7) (2 5 8) (3 6 9))
(-zip '(1 2 3)) ;; => ((1) (2) (3))

-zip-fill (fill-value &rest lists)

Zip lists together, padding shorter lists with fill-value. This is like -zip (which see), except it retains all elements at positions beyond the end of the shortest list. The number of returned groupings is equal to the length of the longest input list, and the length of each grouping is equal to the number of input lists.

Since the return value changes form depending on the number of arguments, it is generally recommended to use -zip-lists-fill instead, unless a list of dotted pairs is explicitly desired.

(-zip-fill 0 '(1 2 3) '(4 5)) ;; => ((1 . 4) (2 . 5) (3 . 0))
(-zip-fill 0 () '(1 2 3)) ;; => ((0 . 1) (0 . 2) (0 . 3))
(-zip-fill 0 '(1 2) '(3 4) '(5 6)) ;; => ((1 3 5) (2 4 6))

-unzip-lists (lists)

Unzip lists.

This works just like -zip-lists (which see), but takes a list of lists instead of a variable number of arguments, such that

(-unzip-lists (-zip-lists `args`...))

is identity (given that the lists comprising args are of the same length).

(-unzip-lists (-zip-lists '(1 2) '(3 4) '(5 6))) ;; => ((1 2) (3 4) (5 6))
(-unzip-lists '((1 2 3) (4 5) (6 7) (8 9))) ;; => ((1 4 6 8) (2 5 7 9))
(-unzip-lists '((1 2 3) (4 5 6))) ;; => ((1 4) (2 5) (3 6))

-unzip (lists)

Unzip lists.

This works just like -zip (which see), but takes a list of lists instead of a variable number of arguments, such that

(-unzip (-zip `l1` `l2` `l3` ...))

is identity (given that the lists are of the same length, and that -zip is not called with two arguments, because of the caveat described in its docstring).

Note in particular that calling -unzip on a list of two lists will return a list of dotted pairs.

Since the return value changes form depending on the number of lists, it is generally recommended to use -unzip-lists instead.

(-unzip (-zip '(1 2) '(3 4) '(5 6))) ;; => ((1 . 2) (3 . 4) (5 . 6))
(-unzip '((1 2 3) (4 5 6))) ;; => ((1 . 4) (2 . 5) (3 . 6))
(-unzip '((1 2 3) (4 5) (6 7) (8 9))) ;; => ((1 4 6 8) (2 5 7 9))

-pad (fill-value &rest lists)

Pad each of lists with fill-value until they all have equal lengths.

Ensure all lists are as long as the longest one by repeatedly appending fill-value to the shorter lists, and return the resulting lists.

(-pad 0 ()) ;; => (nil)
(-pad 0 '(1 2) '(3 4)) ;; => ((1 2) (3 4))
(-pad 0 '(1 2) '(3 4 5 6) '(7 8 9)) ;; => ((1 2 0 0) (3 4 5 6) (7 8 9 0))

-table (fn &rest lists)

Compute outer product of lists using function fn.

The function fn should have the same arity as the number of supplied lists.

The outer product is computed by applying fn to all possible combinations created by taking one element from each list in order. The dimension of the result is (length lists).

See also: -table-flat

(-table '* '(1 2 3) '(1 2 3)) ;; => ((1 2 3) (2 4 6) (3 6 9))
(-table (lambda (a b) (-sum (-zip-with '* a b))) '((1 2) (3 4)) '((1 3) (2 4))) ;; => ((7 15) (10 22))
(apply '-table 'list (-repeat 3 '(1 2))) ;; => ((((1 1 1) (2 1 1)) ((1 2 1) (2 2 1))) (((1 1 2) (2 1 2)) ((1 2 2) (2 2 2))))

-table-flat (fn &rest lists)

Compute flat outer product of lists using function fn.

The function fn should have the same arity as the number of supplied lists.

The outer product is computed by applying fn to all possible combinations created by taking one element from each list in order. The results are flattened, ignoring the tensor structure of the result. This is equivalent to calling:

(-flatten-n (1- (length lists)) (apply '-table fn lists))

but the implementation here is much more efficient.

See also: -flatten-n, -table

(-table-flat 'list '(1 2 3) '(a b c)) ;; => ((1 a) (2 a) (3 a) (1 b) (2 b) (3 b) (1 c) (2 c) (3 c))
(-table-flat '* '(1 2 3) '(1 2 3)) ;; => (1 2 3 2 4 6 3 6 9)
(apply '-table-flat 'list (-repeat 3 '(1 2))) ;; => ((1 1 1) (2 1 1) (1 2 1) (2 2 1) (1 1 2) (2 1 2) (1 2 2) (2 2 2))

-first (pred list)

Return the first item in list for which pred returns non-nil. Return nil if no such element is found.

To get the first item in the list no questions asked, use -first-item.

Alias: -find.

This function's anaphoric counterpart is --first.

(-first #'natnump '(-1 0 1)) ;; => 0
(-first #'null '(1 2 3)) ;; => nil
(--first (> it 2) '(1 2 3)) ;; => 3

-last (pred list)

Return the last x in list where (pred x) is non-nil, else nil.

(-last 'even? '(1 2 3 4 5 6 3 3 3)) ;; => 6
(-last 'even? '(1 3 7 5 9)) ;; => nil
(--last (> (length it) 3) '("a" "looong" "word" "and" "short" "one")) ;; => "short"

-first-item (list)

Return the first item of list, or nil on an empty list.

See also: -second-item, -last-item, etc.

(-first-item ()) ;; => ()
(-first-item '(1 2 3 4 5)) ;; => 1
(let ((list (list 1 2 3))) (setf (-first-item list) 5) list) ;; => (5 2 3)

-second-item (list)

Return the second item of list, or nil if list is too short.

See also: -first-item, -third-item, etc.

(-second-item ()) ;; => ()
(-second-item '(1 2 3 4 5)) ;; => 2
(let ((list (list 1 2))) (setf (-second-item list) 5) list) ;; => (1 5)

-third-item (list)

Return the third item of list, or nil if list is too short.

See also: -second-item, -fourth-item, etc.

(-third-item ()) ;; => ()
(-third-item '(1 2)) ;; => ()
(-third-item '(1 2 3 4 5)) ;; => 3

-fourth-item (list)

Return the fourth item of list, or nil if list is too short.

See also: -third-item, -fifth-item, etc.

(-fourth-item ()) ;; => ()
(-fourth-item '(1 2 3)) ;; => ()
(-fourth-item '(1 2 3 4 5)) ;; => 4

-fifth-item (list)

Return the fifth item of list, or nil if list is too short.

See also: -fourth-item, -last-item, etc.

(-fifth-item ()) ;; => ()
(-fifth-item '(1 2 3 4)) ;; => ()
(-fifth-item '(1 2 3 4 5)) ;; => 5

-last-item (list)

Return the last item of list, or nil on an empty list.

See also: -first-item, etc.

(-last-item ()) ;; => ()
(-last-item '(1 2 3 4 5)) ;; => 5
(let ((list (list 1 2 3))) (setf (-last-item list) 5) list) ;; => (1 2 5)

-butlast (list)

Return a list of all items in list except for the last.

(-butlast '(1 2 3)) ;; => (1 2)
(-butlast '(1 2)) ;; => (1)
(-butlast '(1)) ;; => nil

-sort (comparator list)

Sort list, stably, comparing elements using comparator. Return the sorted list. list is not modified by side effects. comparator is called with two elements of list, and should return non-nil if the first element should sort before the second.

(-sort #'< '(3 1 2)) ;; => (1 2 3)
(-sort #'> '(3 1 2)) ;; => (3 2 1)
(--sort (< it other) '(3 1 2)) ;; => (1 2 3)

-list (arg)

Ensure arg is a list. If arg is already a list, return it as is (not a copy). Otherwise, return a new list with arg as its only element.

Another supported calling convention is (-list &rest args). In this case, if arg is not a list, a new list with all of args as elements is returned. This use is supported for backward compatibility and is otherwise deprecated.

(-list 1) ;; => (1)
(-list ()) ;; => ()
(-list '(1 2 3)) ;; => (1 2 3)

-fix (fn list)

Compute the (least) fixpoint of fn with initial input list.

fn is called at least once, results are compared with equal.

(-fix (lambda (l) (-non-nil (--mapcat (-split-at (/ (length it) 2) it) l))) '((1 2 3))) ;; => ((1) (2) (3))
(let ((l '((starwars scifi) (jedi starwars warrior)))) (--fix (-uniq (--mapcat (cons it (cdr (assq it l))) it)) '(jedi book))) ;; => (jedi starwars warrior scifi book)

Tree operations

Functions pretending lists are trees.

-tree-seq (branch children tree)

Return a sequence of the nodes in tree, in depth-first search order.

branch is a predicate of one argument that returns non-nil if the passed argument is a branch, that is, a node that can have children.

children is a function of one argument that returns the children of the passed branch node.

Non-branch nodes are simply copied.

(-tree-seq 'listp 'identity '(1 (2 3) 4 (5 (6 7)))) ;; => ((1 (2 3) 4 (5 (6 7))) 1 (2 3) 2 3 4 (5 (6 7)) 5 (6 7) 6 7)
(-tree-seq 'listp 'reverse '(1 (2 3) 4 (5 (6 7)))) ;; => ((1 (2 3) 4 (5 (6 7))) (5 (6 7)) (6 7) 7 6 5 4 (2 3) 3 2 1)
(--tree-seq (vectorp it) (append it nil) [1 [2 3] 4 [5 [6 7]]]) ;; => ([1 [2 3] 4 [5 [6 7]]] 1 [2 3] 2 3 4 [5 [6 7]] 5 [6 7] 6 7)

-tree-map (fn tree)

Apply fn to each element of tree while preserving the tree structure.

(-tree-map '1+ '(1 (2 3) (4 (5 6) 7))) ;; => (2 (3 4) (5 (6 7) 8))
(-tree-map '(lambda (x) (cons x (expt 2 x))) '(1 (2 3) 4)) ;; => ((1 . 2) ((2 . 4) (3 . 8)) (4 . 16))
(--tree-map (length it) '("<body>" ("<p>" "text" "</p>") "</body>")) ;; => (6 (3 4 4) 7)

-tree-map-nodes (pred fun tree)

Call fun on each node of tree that satisfies pred.

If pred returns nil, continue descending down this node. If pred returns non-nil, apply fun to this node and do not descend further.

(-tree-map-nodes 'vectorp (lambda (x) (-sum (append x nil))) '(1 [2 3] 4 (5 [6 7] 8))) ;; => (1 5 4 (5 13 8))
(-tree-map-nodes 'keywordp (lambda (x) (symbol-name x)) '(1 :foo 4 ((5 6 :bar) :baz 8))) ;; => (1 ":foo" 4 ((5 6 ":bar") ":baz" 8))
(--tree-map-nodes (eq (car-safe it) 'add-mode) (-concat it (list :mode 'emacs-lisp-mode)) '(with-mode emacs-lisp-mode (foo bar) (add-mode a b) (baz (add-mode c d)))) ;; => (with-mode emacs-lisp-mode (foo bar) (add-mode a b :mode emacs-lisp-mode) (baz (add-mode c d :mode emacs-lisp-mode)))

-tree-reduce (fn tree)

Use fn to reduce elements of list tree. If elements of tree are lists themselves, apply the reduction recursively.

fn is first applied to first element of the list and second element, then on this result and third element from the list etc.

See -reduce-r for how exactly are lists of zero or one element handled.

(-tree-reduce '+ '(1 (2 3) (4 5))) ;; => 15
(-tree-reduce 'concat '("strings" (" on" " various") ((" levels")))) ;; => "strings on various levels"
(--tree-reduce (cond ((stringp it) (concat it " " acc)) (t (let ((sn (symbol-name it))) (concat "<" sn ">" acc "</" sn ">")))) '(body (p "some words") (div "more" (b "bold") "words"))) ;; => "<body><p>some words</p> <div>more <b>bold</b> words</div></body>"

-tree-reduce-from (fn init-value tree)

Use fn to reduce elements of list tree. If elements of tree are lists themselves, apply the reduction recursively.

fn is first applied to init-value and first element of the list, then on this result and second element from the list etc.

The initial value is ignored on cons pairs as they always contain two elements.

(-tree-reduce-from '+ 1 '(1 (1 1) ((1)))) ;; => 8
(--tree-reduce-from (-concat acc (list it)) nil '(1 (2 3 (4 5)) (6 7))) ;; => ((7 6) ((5 4) 3 2) 1)

-tree-mapreduce (fn folder tree)

Apply fn to each element of tree, and make a list of the results. If elements of tree are lists themselves, apply fn recursively to elements of these nested lists.

Then reduce the resulting lists using folder and initial value init-value. See -reduce-r-from.

This is the same as calling -tree-reduce after -tree-map but is twice as fast as it only traverse the structure once.

(-tree-mapreduce 'list 'append '(1 (2 (3 4) (5 6)) (7 (8 9)))) ;; => (1 2 3 4 5 6 7 8 9)
(--tree-mapreduce 1 (+ it acc) '(1 (2 (4 9) (2 1)) (7 (4 3)))) ;; => 9
(--tree-mapreduce 0 (max acc (1+ it)) '(1 (2 (4 9) (2 1)) (7 (4 3)))) ;; => 3

-tree-mapreduce-from (fn folder init-value tree)

Apply fn to each element of tree, and make a list of the results. If elements of tree are lists themselves, apply fn recursively to elements of these nested lists.

Then reduce the resulting lists using folder and initial value init-value. See -reduce-r-from.

This is the same as calling -tree-reduce-from after -tree-map but is twice as fast as it only traverse the structure once.

(-tree-mapreduce-from 'identity '* 1 '(1 (2 (3 4) (5 6)) (7 (8 9)))) ;; => 362880
(--tree-mapreduce-from (+ it it) (cons it acc) nil '(1 (2 (4 9) (2 1)) (7 (4 3)))) ;; => (2 (4 (8 18) (4 2)) (14 (8 6)))
(concat "{" (--tree-mapreduce-from (cond ((-cons-pair? it) (concat (symbol-name (car it)) " -> " (symbol-name (cdr it)))) (t (concat (symbol-name it) " : {"))) (concat it (unless (or (equal acc "}") (equal (substring it (1- (length it))) "{")) ", ") acc) "}" '((elisp-mode (foo (bar . booze)) (baz . qux)) (c-mode (foo . bla) (bum . bam))))) ;; => "{elisp-mode : {foo : {bar -> booze}, baz -> qux}, c-mode : {foo -> bla, bum -> bam}}"

-clone (list)

Create a deep copy of list. The new list has the same elements and structure but all cons are replaced with new ones. This is useful when you need to clone a structure such as plist or alist.

(let* ((a (list (list 1))) (b (-clone a))) (setcar (car a) 2) b) ;; => ((1))

Threading macros

Macros that conditionally combine sequential forms for brevity or readability.

-> (x &optional form &rest more)

Thread the expr through the forms. Insert x as the second item in the first form, making a list of it if it is not a list already. If there are more forms, insert the first form as the second item in second form, etc.

(-> '(2 3 5)) ;; => (2 3 5)
(-> '(2 3 5) (append '(8 13))) ;; => (2 3 5 8 13)
(-> '(2 3 5) (append '(8 13)) (-slice 1 -1)) ;; => (3 5 8)

->> (x &optional form &rest more)

Thread the expr through the forms. Insert x as the last item in the first form, making a list of it if it is not a list already. If there are more forms, insert the first form as the last item in second form, etc.

(->> '(1 2 3) (-map 'square)) ;; => (1 4 9)
(->> '(1 2 3) (-map 'square) (-remove 'even?)) ;; => (1 9)
(->> '(1 2 3) (-map 'square) (-reduce '+)) ;; => 14

--> (x &rest forms)

Starting with the value of x, thread each expression through forms.

Insert x at the position signified by the symbol it in the first form. If there are more forms, insert the first form at the position signified by it in the second form, etc.

(--> "def" (concat "abc" it "ghi")) ;; => "abcdefghi"
(--> "def" (concat "abc" it "ghi") (upcase it)) ;; => "ABCDEFGHI"
(--> "def" (concat "abc" it "ghi") upcase) ;; => "ABCDEFGHI"

-as-> (value variable &rest forms)

Starting with value, thread variable through forms.

In the first form, bind variable to value. In the second form, bind variable to the result of the first form, and so forth.

(-as-> 3 my-var (1+ my-var) (list my-var) (mapcar (lambda (ele) (* 2 ele)) my-var)) ;; => (8)
(-as-> 3 my-var 1+) ;; => 4
(-as-> 3 my-var) ;; => 3

-some-> (x &optional form &rest more)

When expr is non-nil, thread it through the first form (via ->), and when that result is non-nil, through the next form, etc.

(-some-> '(2 3 5)) ;; => (2 3 5)
(-some-> 5 square) ;; => 25
(-some-> 5 even? square) ;; => nil

-some->> (x &optional form &rest more)

When expr is non-nil, thread it through the first form (via ->>), and when that result is non-nil, through the next form, etc.

(-some->> '(1 2 3) (-map 'square)) ;; => (1 4 9)
(-some->> '(1 3 5) (-last 'even?) (+ 100)) ;; => nil
(-some->> '(2 4 6) (-last 'even?) (+ 100)) ;; => 106

-some--> (expr &rest forms)

Thread expr through forms via -->, while the result is non-nil. When expr evaluates to non-nil, thread the result through the first of forms, and when that result is non-nil, thread it through the next form, etc.

(-some--> "def" (concat "abc" it "ghi")) ;; => "abcdefghi"
(-some--> nil (concat "abc" it "ghi")) ;; => nil
(-some--> '(0 1) (-remove #'natnump it) (append it it) (-map #'1+ it)) ;; => ()

-doto (init &rest forms)

Evaluate init and pass it as argument to forms with ->. The result of evaluating init is threaded through each of forms individually using ->, which see. The return value is result, which forms may have modified by side effect.

(-doto (list 1 2 3) pop pop) ;; => (3)
(-doto (cons 1 2) (setcar 3) (setcdr 4)) ;; => (3 . 4)
(gethash 'k (--doto (make-hash-table) (puthash 'k 'v it))) ;; => v

Binding

Macros that combine let and let* with destructuring and flow control.

-when-let ((var val) &rest body)

If val evaluates to non-nil, bind it to var and execute body.

Note: binding is done according to -let.

(-when-let (match-index (string-match "d" "abcd")) (+ match-index 2)) ;; => 5
(-when-let ((&plist :foo foo) (list :foo "foo")) foo) ;; => "foo"
(-when-let ((&plist :foo foo) (list :bar "bar")) foo) ;; => nil

-when-let* (vars-vals &rest body)

If all vals evaluate to true, bind them to their corresponding vars and execute body. vars-vals should be a list of (var val) pairs.

Note: binding is done according to -let*. vals are evaluated sequentially, and evaluation stops after the first nil val is encountered.

(-when-let* ((x 5) (y 3) (z (+ y 4))) (+ x y z)) ;; => 15
(-when-let* ((x 5) (y nil) (z 7)) (+ x y z)) ;; => nil

-if-let ((var val) then &rest else)

If val evaluates to non-nil, bind it to var and do then, otherwise do else.

Note: binding is done according to -let.

(-if-let (match-index (string-match "d" "abc")) (+ match-index 3) 7) ;; => 7
(--if-let (even? 4) it nil) ;; => t

-if-let* (vars-vals then &rest else)

If all vals evaluate to true, bind them to their corresponding vars and do then, otherwise do else. vars-vals should be a list of (var val) pairs.

Note: binding is done according to -let*. vals are evaluated sequentially, and evaluation stops after the first nil val is encountered.

(-if-let* ((x 5) (y 3) (z 7)) (+ x y z) "foo") ;; => 15
(-if-let* ((x 5) (y nil) (z 7)) (+ x y z) "foo") ;; => "foo"
(-if-let* (((_ _ x) '(nil nil 7))) x) ;; => 7

-let (varlist &rest body)

Bind variables according to varlist then eval body.

varlist is a list of lists of the form (pattern source). Each pattern is matched against the source "structurally". source is only evaluated once for each pattern. Each pattern is matched recursively, and can therefore contain sub-patterns which are matched against corresponding sub-expressions of source.

All the SOURCEs are evalled before any symbols are bound (i.e. "in parallel").

If varlist only contains one (pattern source) element, you can optionally specify it using a vector and discarding the outer-most parens. Thus

(-let ((`pattern` `source`)) ...)

becomes

(-let [`pattern` `source`] ...).

-let uses a convention of not binding places (symbols) starting with _ whenever it's possible. You can use this to skip over entries you don't care about. However, this is not always possible (as a result of implementation) and these symbols might get bound to undefined values.

Following is the overview of supported patterns. Remember that patterns can be matched recursively, so every a, b, aK in the following can be a matching construct and not necessarily a symbol/variable.

Symbol:

a - bind the `source` to `a`.  This is just like regular `let`.

Conses and lists:

(a) - bind `car` of cons/list to `a`

(a . b) - bind car of cons to `a` and `cdr` to `b`

(a b) - bind car of list to `a` and `cadr` to `b`

(a1 a2 a3 ...) - bind 0th car of list to `a1`, 1st to `a2`, 2nd to `a3`...

(a1 a2 a3 ... aN . rest) - as above, but bind the `n`th cdr to `rest`.

Vectors:

[a] - bind 0th element of a non-list sequence to `a` (works with
      vectors, strings, bit arrays...)

[a1 a2 a3 ...] - bind 0th element of non-list sequence to `a0`, 1st to
                 `a1`, 2nd to `a2`, ...
                 If the `pattern` is shorter than `source`, the values at
                 places not in `pattern` are ignored.
                 If the `pattern` is longer than `source`, an `error` is
                 thrown.

[a1 a2 a3 ... &rest rest] - as above, but bind the rest of
                            the sequence to `rest`.  This is
                            conceptually the same as improper list
                            matching (a1 a2 ... aN . rest)

Key/value stores:

(&plist key0 a0 ... keyN aN) - bind value mapped by keyK in the
                               `source` plist to aK.  If the
                               value is not found, aK is `nil`.
                               Uses `plist-get` to fetch values.

(&alist key0 a0 ... keyN aN) - bind value mapped by keyK in the
                               `source` alist to aK.  If the
                               value is not found, aK is `nil`.
                               Uses `assoc` to fetch values.

(&hash key0 a0 ... keyN aN) - bind value mapped by keyK in the
                              `source` hash table to aK.  If the
                              value is not found, aK is `nil`.
                              Uses `gethash` to fetch values.

Further, special keyword &keys supports "inline" matching of plist-like key-value pairs, similarly to &keys keyword of cl-defun.

(a1 a2 ... aN &keys key1 b1 ... keyN bK)

This binds n values from the list to a1 ... aN, then interprets the cdr as a plist (see key/value matching above).

a shorthand notation for kv-destructuring exists which allows the patterns be optionally left out and derived from the key name in the following fashion:

  • a key :foo is converted into foo pattern,
  • a key 'bar is converted into bar pattern,
  • a key "baz" is converted into baz pattern.

That is, the entire value under the key is bound to the derived variable without any further destructuring.

This is possible only when the form following the key is not a valid pattern (i.e. not a symbol, a cons cell or a vector). Otherwise the matching proceeds as usual and in case of an invalid spec fails with an error.

Thus the patterns are normalized as follows:

 ;; derive all the missing patterns
 (&plist :foo 'bar "baz") => (&plist :foo foo 'bar bar "baz" baz)

 ;; we can specify some but not others
 (&plist :foo 'bar explicit-bar) => (&plist :foo foo 'bar explicit-bar)

 ;; nothing happens, we store :foo in x
 (&plist :foo x) => (&plist :foo x)

 ;; nothing happens, we match recursively
 (&plist :foo (a b c)) => (&plist :foo (a b c))

You can name the source using the syntax symbol &as pattern. This syntax works with lists (proper or improper), vectors and all types of maps.

(list &as a b c) (list 1 2 3)

binds a to 1, b to 2, c to 3 and list to (1 2 3).

Similarly:

(bounds &as beg . end) (cons 1 2)

binds beg to 1, end to 2 and bounds to (1 . 2).

(items &as first . rest) (list 1 2 3)

binds first to 1, rest to (2 3) and items to (1 2 3)

[vect &as _ b c] [1 2 3]

binds b to 2, c to 3 and vect to [1 2 3] (_ avoids binding as usual).

(plist &as &plist :b b) (list :a 1 :b 2 :c 3)

binds b to 2 and plist to (:a 1 :b 2 :c 3). Same for &alist and &hash.

This is especially useful when we want to capture the result of a computation and destructure at the same time. Consider the form (function-returning-complex-structure) returning a list of two vectors with two items each. We want to capture this entire result and pass it to another computation, but at the same time we want to get the second item from each vector. We can achieve it with pattern

(result &as [_ a] [_ b]) (function-returning-complex-structure)

Note: Clojure programmers may know this feature as the ":as binding". The difference is that we put the &as at the front because we need to support improper list binding.

(-let (([a (b c) d] [1 (2 3) 4])) (list a b c d)) ;; => (1 2 3 4)
(-let [(a b c . d) (list 1 2 3 4 5 6)] (list a b c d)) ;; => (1 2 3 (4 5 6))
(-let [(&plist :foo foo :bar bar) (list :baz 3 :foo 1 :qux 4 :bar 2)] (list foo bar)) ;; => (1 2)

-let* (varlist &rest body)

Bind variables according to varlist then eval body.

varlist is a list of lists of the form (pattern source). Each pattern is matched against the source structurally. source is only evaluated once for each pattern.

Each source can refer to the symbols already bound by this varlist. This is useful if you want to destructure source recursively but also want to name the intermediate structures.

See -let for the list of all possible patterns.

(-let* (((a . b) (cons 1 2)) ((c . d) (cons 3 4))) (list a b c d)) ;; => (1 2 3 4)
(-let* (((a . b) (cons 1 (cons 2 3))) ((c . d) b)) (list a b c d)) ;; => (1 (2 . 3) 2 3)
(-let* (((&alist "foo" foo "bar" bar) (list (cons "foo" 1) (cons "bar" (list 'a 'b 'c)))) ((a b c) bar)) (list foo a b c bar)) ;; => (1 a b c (a b c))

-lambda (match-form &rest body)

Return a lambda which destructures its input as match-form and executes body.

Note that you have to enclose the match-form in a pair of parens, such that:

(-lambda (x) body)
(-lambda (x y ...) body)

has the usual semantics of lambda. Furthermore, these get translated into normal lambda, so there is no performance penalty.

See -let for a description of the destructuring mechanism.

(-map (-lambda ((x y)) (+ x y)) '((1 2) (3 4) (5 6))) ;; => (3 7 11)
(-map (-lambda ([x y]) (+ x y)) '([1 2] [3 4] [5 6])) ;; => (3 7 11)
(funcall (-lambda ((_ . a) (_ . b)) (-concat a b)) '(1 2 3) '(4 5 6)) ;; => (2 3 5 6)

-setq ([match-form val] ...)

Bind each match-form to the value of its val.

match-form destructuring is done according to the rules of -let.

This macro allows you to bind multiple variables by destructuring the value, so for example:

(-setq (a b) x
       (&plist :c c) plist)

expands roughly speaking to the following code

(setq a (car x)
      b (cadr x)
      c (plist-get plist :c))

Care is taken to only evaluate each val once so that in case of multiple assignments it does not cause unexpected side effects.

(let (a) (-setq a 1) a) ;; => 1
(let (a b) (-setq (a b) (list 1 2)) (list a b)) ;; => (1 2)
(let (c) (-setq (&plist :c c) (list :c "c")) c) ;; => "c"

Side effects

Functions iterating over lists for side effect only.

-each (list fn)

Call fn on each element of list. Return nil; this function is intended for side effects.

Its anaphoric counterpart is --each.

For access to the current element's index in list, see -each-indexed.

(let (l) (-each '(1 2 3) (lambda (x) (push x l))) l) ;; => (3 2 1)
(let (l) (--each '(1 2 3) (push it l)) l) ;; => (3 2 1)
(-each '(1 2 3) #'identity) ;; => nil

-each-while (list pred fn)

Call fn on each item in list, while (pred item) is non-nil. Once an item is reached for which pred returns nil, fn is no longer called. Return nil; this function is intended for side effects.

Its anaphoric counterpart is --each-while.

(let (l) (-each-while '(2 4 5 6) #'even? (lambda (x) (push x l))) l) ;; => (4 2)
(let (l) (--each-while '(1 2 3 4) (< it 3) (push it l)) l) ;; => (2 1)
(let ((s 0)) (--each-while '(1 3 4 5) (< it 5) (setq s (+ s it))) s) ;; => 8

-each-indexed (list fn)

Call fn on each index and element of list. For each item at index in list, call (funcall fn index item). Return nil; this function is intended for side effects.

See also: -map-indexed.

(let (l) (-each-indexed '(a b c) (lambda (i x) (push (list x i) l))) l) ;; => ((c 2) (b 1) (a 0))
(let (l) (--each-indexed '(a b c) (push (list it it-index) l)) l) ;; => ((c 2) (b 1) (a 0))
(let (l) (--each-indexed () (push it l)) l) ;; => ()

-each-r (list fn)

Call fn on each element of list in reversed order. Return nil; this function is intended for side effects.

Its anaphoric counterpart is --each-r.

(let (l) (-each-r '(1 2 3) (lambda (x) (push x l))) l) ;; => (1 2 3)
(let (l) (--each-r '(1 2 3) (push it l)) l) ;; => (1 2 3)
(-each-r '(1 2 3) #'identity) ;; => nil

-each-r-while (list pred fn)

Call fn on each item in reversed list, while (pred item) is non-nil. Once an item is reached for which pred returns nil, fn is no longer called. Return nil; this function is intended for side effects.

Its anaphoric counterpart is --each-r-while.

(let (l) (-each-r-while '(2 4 5 6) #'even? (lambda (x) (push x l))) l) ;; => (6)
(let (l) (--each-r-while '(1 2 3 4) (>= it 3) (push it l)) l) ;; => (3 4)
(let ((s 0)) (--each-r-while '(1 2 3 5) (> it 1) (setq s (+ s it))) s) ;; => 10

-dotimes (num fn)

Call fn num times, presumably for side effects. fn is called with a single argument on successive integers running from 0, inclusive, to num, exclusive. fn is not called if num is less than 1.

This function's anaphoric counterpart is --dotimes.

(let (s) (-dotimes 3 (lambda (n) (push n s))) s) ;; => (2 1 0)
(let (s) (-dotimes 0 (lambda (n) (push n s))) s) ;; => ()
(let (s) (--dotimes 5 (push it s)) s) ;; => (4 3 2 1 0)

Destructive operations

Macros that modify variables holding lists.

!cons (car cdr)

Destructive: Set cdr to the cons of car and cdr.

(let (l) (!cons 5 l) l) ;; => (5)
(let ((l '(3))) (!cons 5 l) l) ;; => (5 3)

!cdr (list)

Destructive: Set list to the cdr of list.

(let ((l '(3))) (!cdr l) l) ;; => ()
(let ((l '(3 5))) (!cdr l) l) ;; => (5)

Function combinators

Functions that manipulate and compose other functions.

-partial (fun &rest args)

Return a function that is a partial application of fun to args. args is a list of the first n arguments to pass to fun. The result is a new function which does the same as fun, except that the first n arguments are fixed at the values with which this function was called.

(funcall (-partial #'+ 5)) ;; => 5
(funcall (-partial #'- 5) 3) ;; => 2
(funcall (-partial #'+ 5 2) 3) ;; => 10

-rpartial (fn &rest args)

Return a function that is a partial application of fn to args. args is a list of the last n arguments to pass to fn. The result is a new function which does the same as fn, except that the last n arguments are fixed at the values with which this function was called. This is like -partial, except the arguments are fixed starting from the right rather than the left.

(funcall (-rpartial #'- 5)) ;; => -5
(funcall (-rpartial #'- 5) 8) ;; => 3
(funcall (-rpartial #'- 5 2) 10) ;; => 3

-juxt (&rest fns)

Return a function that is the juxtaposition of fns. The returned function takes a variable number of args, applies each of fns in turn to args, and returns the list of results.

(funcall (-juxt) 1 2) ;; => ()
(funcall (-juxt #'+ #'- #'* #'/) 7 5) ;; => (12 2 35 1)
(mapcar (-juxt #'number-to-string #'1+) '(1 2)) ;; => (("1" 2) ("2" 3))

-compose (&rest fns)

Compose fns into a single composite function. Return a function that takes a variable number of args, applies the last function in fns to args, and returns the result of calling each remaining function on the result of the previous function, right-to-left. If no fns are given, return a variadic identity function.

(funcall (-compose #'- #'1+ #'+) 1 2 3) ;; => -7
(funcall (-compose #'identity #'1+) 3) ;; => 4
(mapcar (-compose #'not #'stringp) '(nil "")) ;; => (t nil)

-applify (fn)

Return a function that applies fn to a single list of args. This changes the arity of fn from taking n distinct arguments to taking 1 argument which is a list of n arguments.

(funcall (-applify #'+) nil) ;; => 0
(mapcar (-applify #'+) '((1 1 1) (1 2 3) (5 5 5))) ;; => (3 6 15)
(funcall (-applify #'<) '(3 6)) ;; => t

-on (op trans)

Return a function that calls trans on each arg and op on the results. The returned function takes a variable number of arguments, calls the function trans on each one in turn, and then passes those results as the list of arguments to op, in the same order.

For example, the following pairs of expressions are morally equivalent:

(funcall (-on #'+ #'1+) 1 2 3) = (+ (1+ 1) (1+ 2) (1+ 3))
(funcall (-on #'+ #'1+))       = (+)
(-sort (-on #'< #'length) '((1 2 3) (1) (1 2))) ;; => ((1) (1 2) (1 2 3))
(funcall (-on #'min #'string-to-number) "22" "2" "1" "12") ;; => 1
(-min-by (-on #'> #'length) '((1 2 3) (4) (1 2))) ;; => (4)

-flip (fn)

Return a function that calls fn with its arguments reversed. The returned function takes the same number of arguments as fn.

For example, the following two expressions are morally equivalent:

(funcall (-flip #'-) 1 2) = (- 2 1)

See also: -rotate-args.

(-sort (-flip #'<) '(4 3 6 1)) ;; => (6 4 3 1)
(funcall (-flip #'-) 3 2 1 10) ;; => 4
(funcall (-flip #'1+) 1) ;; => 2

-rotate-args (n fn)

Return a function that calls fn with args rotated n places to the right. The returned function takes the same number of arguments as fn, rotates the list of arguments n places to the right (left if n is negative) just like -rotate, and applies fn to the result.

See also: -flip.

(funcall (-rotate-args -1 #'list) 1 2 3 4) ;; => (2 3 4 1)
(funcall (-rotate-args 1 #'-) 1 10 100) ;; => 89
(funcall (-rotate-args 2 #'list) 3 4 5 1 2) ;; => (1 2 3 4 5)

-const (c)

Return a function that returns c ignoring any additional arguments.

In types: a -> b -> a

(funcall (-const 2) 1 3 "foo") ;; => 2
(mapcar (-const 1) '("a" "b" "c" "d")) ;; => (1 1 1 1)
(-sum (mapcar (-const 1) '("a" "b" "c" "d"))) ;; => 4

-cut (&rest params)

Take n-ary function and n arguments and specialize some of them. Arguments denoted by <> will be left unspecialized.

See srfi-26 for detailed description.

(funcall (-cut list 1 <> 3 <> 5) 2 4) ;; => (1 2 3 4 5)
(-map (-cut funcall <> 5) `(1+ 1- ,(lambda (x) (/ 1.0 x)))) ;; => (6 4 0.2)
(-map (-cut <> 1 2 3) '(list vector string)) ;; => ((1 2 3) [1 2 3] "\1\2\3")

-not (pred)

Return a predicate that negates the result of pred. The returned predicate passes its arguments to pred. If pred returns nil, the result is non-nil; otherwise the result is nil.

See also: -andfn and -orfn.

(funcall (-not #'numberp) "5") ;; => t
(-sort (-not #'<) '(5 2 1 0 6)) ;; => (6 5 2 1 0)
(-filter (-not (-partial #'< 4)) '(1 2 3 4 5 6 7 8)) ;; => (1 2 3 4)

-orfn (&rest preds)

Return a predicate that returns the first non-nil result of preds. The returned predicate takes a variable number of arguments, passes them to each predicate in preds in turn until one of them returns non-nil, and returns that non-nil result without calling the remaining preds. If all preds return nil, or if no preds are given, the returned predicate returns nil.

See also: -andfn and -not.

(-filter (-orfn #'natnump #'booleanp) '(1 nil "a" -4 b c t)) ;; => (1 nil t)
(funcall (-orfn #'symbolp (-cut string-match-p "x" <>)) "axe") ;; => 1
(funcall (-orfn #'= #'+) 1 1) ;; => t

-andfn (&rest preds)

Return a predicate that returns non-nil if all preds do so. The returned predicate p takes a variable number of arguments and passes them to each predicate in preds in turn. If any one of preds returns nil, p also returns nil without calling the remaining preds. If all preds return non-nil, p returns the last such value. If no preds are given, p always returns non-nil.

See also: -orfn and -not.

(-filter (-andfn #'numberp (-cut < <> 5)) '(a 1 b 6 c 2)) ;; => (1 2)
(mapcar (-andfn #'numberp #'1+) '(a 1 b 6)) ;; => (nil 2 nil 7)
(funcall (-andfn #'= #'+) 1 1) ;; => 2

-iteratefn (fn n)

Return a function fn composed n times with itself.

fn is a unary function. If you need to use a function of higher arity, use -applify first to turn it into a unary function.

With n = 0, this acts as identity function.

In types: (a -> a) -> Int -> a -> a.

This function satisfies the following law:

(funcall (-iteratefn fn n) init) = (-last-item (-iterate fn init (1+ n))).
(funcall (-iteratefn (lambda (x) (* x x)) 3) 2) ;; => 256
(funcall (-iteratefn '1+ 3) 1) ;; => 4
(funcall (-iteratefn 'cdr 3) '(1 2 3 4 5)) ;; => (4 5)

-fixfn (fn &optional equal-test halt-test)

Return a function that computes the (least) fixpoint of fn.

fn must be a unary function. The returned lambda takes a single argument, x, the initial value for the fixpoint iteration. The iteration halts when either of the following conditions is satisfied:

  1. Iteration converges to the fixpoint, with equality being tested using equal-test. If equal-test is not specified, equal is used. For functions over the floating point numbers, it may be necessary to provide an appropriate approximate comparison test.

  2. halt-test returns a non-nil value. halt-test defaults to a simple counter that returns t after -fixfn-max-iterations, to guard against infinite iteration. Otherwise, halt-test must be a function that accepts a single argument, the current value of x, and returns non-nil as long as iteration should continue. In this way, a more sophisticated convergence test may be supplied by the caller.

The return value of the lambda is either the fixpoint or, if iteration halted before converging, a cons with car halted and cdr the final output from halt-test.

In types: (a -> a) -> a -> a.

(funcall (-fixfn #'cos #'approx=) 0.7) ;; ~> 0.7390851332151607
(funcall (-fixfn (lambda (x) (expt (+ x 10) 0.25))) 2.0) ;; => 1.8555845286409378
(funcall (-fixfn #'sin #'approx=) 0.1) ;; => (halted . t)

-prodfn (&rest fns)

Return a function that applies each of fns to each of a list of arguments.

Takes a list of n functions and returns a function that takes a list of length n, applying ith function to ith element of the input list. Returns a list of length n.

In types (for n=2): ((a -> b), (c -> d)) -> (a, c) -> (b, d)

This function satisfies the following laws:

  (-compose (-prodfn f g ...)
            (-prodfn f' g' ...))
= (-prodfn (-compose f f')
           (-compose g g')
           ...)

  (-prodfn f g ...)
= (-juxt (-compose f (-partial #'nth 0))
         (-compose g (-partial #'nth 1))
         ...)

  (-compose (-prodfn f g ...)
            (-juxt f' g' ...))
= (-juxt (-compose f f')
         (-compose g g')
         ...)

  (-compose (-partial #'nth n)
            (-prod f1 f2 ...))
= (-compose fn (-partial #'nth n))
(funcall (-prodfn #'1+ #'1- #'number-to-string) '(1 2 3)) ;; => (2 1 "3")
(-map (-prodfn #'1- #'1+) '((1 2) (3 4) (5 6))) ;; => ((0 3) (2 5) (4 7))
(apply #'+ (funcall (-prodfn #'length #'string-to-number) '((t) "5"))) ;; => 6

Contribute

Yes, please do. Pure functions in the list manipulation realm only, please. There's a suite of examples/tests in dev/examples.el, so remember to add tests for your additions, or I might break them later.

You'll find the repo at:

https://github.com/magnars/dash.el

Run the tests with:

make check

Regenerate the docs with:

make docs

I highly recommend that you install these as a pre-commit hook, so that the tests are always running and the docs are always in sync:

cp dev/pre-commit.sh .git/hooks/pre-commit

Oh, and don't edit README.md or dash.texi directly; they are auto-generated. Change readme-template.md or dash-template.texi instead, respectively.

To ensure that dash.el can be distributed with GNU ELPA or Emacs, we require that all contributors assign copyright to the Free Software Foundation. For more on this, see (info "(emacs) Copyright Assignment").

Contributors

Thanks!

New contributors are very welcome. See the Contribute section above.

License

Copyright (C) 2012-2024 Free Software Foundation, Inc.

Author: Magnar Sveen [email protected]

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

dash.el's People

Contributors

basil-conto avatar bbatsov avatar camsaul avatar cireu avatar doublep avatar duianto avatar fbergroth avatar fuco1 avatar holomorph avatar kurisuwhyte avatar magnars avatar mijoharas avatar mikavilpas avatar monnier avatar occidens avatar phillord avatar phillord-ncl avatar phst avatar rejeep avatar shosti avatar silex avatar swiftlawngnome avatar tarsius avatar tkf avatar vemv avatar w08r avatar wbolster avatar wilfred avatar yyoncho avatar zck avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

dash.el's Issues

The font-locking should be optional

While I agree that font-locking dash functions may be a good idea, it's not a good idea to force it on everyone, especially if the only reason they have dash installed is because some other package depends on it.

Could you make the font-locking optional, so that people who do want it can enable it with e.g. add-hook?

Please move ert.el to a subdirectory

ert.el is currently in the main project path. This will shadow the emacs' default ert.el if the project directory is added to the load-path. This is, e.g., a problem for el-get integration. See dimitri/el-get#974 (comment)

This could be fixed by moving ert.el into a separate subdirectory similar to what you did in js2-refactor.el (where it is in util/)

Make "See also:" a clickable link in the docs.

If someone feels like implementing this, please :) Otherwise I'm just adding this here so we won't forget.

By docs I mean the README.md file. It is already clickable from within emacs's help system.

would you like let-while?

I came up with this the other day:

(defmacro* let-while ((var expression) &rest body)
  "A simple binding loop.

VAR is bound to EXPRESSION repeatedly until `nil'.

BODY is evaluated each time."
  (declare
   (debug (sexp sexp &rest form))
   (indent 1))
  (let ((expression-proc (make-symbol "exprp")))
    `(let ((,expression-proc (lambda () ,expression)))
       (let ((,var (funcall ,expression-proc)))
         (while ,var
           (progn ,@body)
           (setq ,var (funcall ,expression-proc)))))))

(defun let-while-test ()
  (catch :io
    (let ((lines '("line 1" "line 2")))
      (flet ((get-line ()
               (or
                (pop lines)
                (throw :io :eof))))
        (let-while (line (get-line))
          (message "the line is: %s" line))))))

It's very useful for using with iterators. I'm not sure you want to go down the iterator route but this might still be useful.

new version of --each: --each-when

Salve!

I have a new version of --each, this one I called --each-when (following the similarly operating function --map-when. What this does is execute the body only on items of the list where they match the predicate. If they don't match the predicate, nothing happens.

it is "side effect" analogy of --map-when (and so could be emulated with it), but I find it more convenient and clean (--each-* clearly says it is only there for side-effect). It can also be implemented using (--each (--filter ...)) but that would be less optimal solution with additional clutter.

Here's the code:

(defmacro --each-when (list pred &rest body)
  "Anaphoric form of `-each-when'."
  (let ((l (make-symbol "list")))
    `(let ((,l ,list))
       (while ,l
         (let ((it (car ,l)))
           (when ,pred ,@body))
         (!cdr ,l)))))

(defun -each-when (list pred fn)
  "Calls FN with every item in LIST for which PRED is non-nil.
Returns nil, used for side-effects only."
  (--each-when list (funcall pred it) (funcall fn it)))

Some examples:

(let (s) (--each-when '(1 2 3 4 5 6) (= 0 (% it 2)) (!cons it s)) s) ;; '(6 4 2)
(let ((l '((1 . "a") (2 . "b") (3 . "c")))) (--each-when l (> (car it) 1) (setcdr it "changed")) l)
;; ((1 . "a")
;;  (2 . "changed")
;;  (3 . "changed"))

These examples are a bit contrived, but I've found a real use for it in my project, so I guess it can be useful for other people :P

Cheers!

-flatten doesn't work with non-list cons cells

I tried flattening this list of message parts:

(#("multipart/mixed" 0 15
   (boundary "_002_29B227D89CBC7A47B50BF860CD7DB7BE0C50EE1FUKDC1PCMBX02wor_"
    buffer #<buffer  *mm*<80>>
    from "[email protected]" start nil))
  (#<buffer  *mm*<81>>
             ("text/plain" (charset . "us-ascii"))
             quoted-printable nil ("inline") nil nil nil)
  (#<buffer  *mm*<82>>
             ("application/msword" (name . "Deployment Engineer - v2.doc"))
             base64 nil
             ("attachment"
              (modification-date . "Fri, 08 Mar 2013 15:54:37 GMT")
              (creation-date . "Fri, 08 Feb 2013 10:09:55 GMT")
              (size . "34816")
              (filename . "Deployment Engineer - v2.doc"))
             "Deployment Engineer - v2.doc" nil nil))

It barfs on the cons cells:

  mapcar(#[(it) "�  !\207" [fn it] 2] (charset . "us-ascii"))
  -mapcat(-flatten (charset . "us-ascii"))
  -flatten((charset . "us-ascii"))
  #[(it) "� !\207" [fn it] 2]((charset . "us-ascii"))
  mapcar(#[(it) "�  !\207" [fn it] 2] ("text/plain" (charset . "us-ascii")))
  -mapcat(-flatten ("text/plain" (charset . "us-ascii")))
  -flatten(("text/plain" (charset . "us-ascii")))
  #[(it) "� !\207" [fn it] 2](("text/plain" (charset . "us-ascii")))
  mapcar(#[(it) "�  !\207" [fn it] 2] (#<buffer  *mm*<81>> ("text/plain" (charset . "us-ascii")) quoted-printable nil ("inline") nil nil nil))
  -mapcat(-flatten (#<buffer  *mm*<81>> ("text/plain" (charset . "us-ascii")) quoted-printable nil ("inline") nil nil nil))
  -flatten((#<buffer  *mm*<81>> ("text/plain" (charset . "us-ascii")) quoted-printable nil ("inline") nil nil nil))
  #[(it) "� !\207" [fn it] 2]((#<buffer  *mm*<81>> ("text/plain" (charset . "us-ascii")) quoted-printable nil ("inline") nil nil nil))
  mapcar(#[(it) "�  !\207" [fn it] 2] (#("multipart/mixed" 0 15 (boundary "_002_29B227D89CBC7A47B50BF860CD7DB7BE0C50EE1FUKDC1PCMBX02wor_" buffer #<buffer  *mm*<80>> from "[email protected]" start nil)) (#<buffer  *mm*<81>> ("text/plain" (charset . "us-ascii")) quoted-printable nil ("inline") nil nil nil) (#<buffer  *mm*<82>> ("application/msword" (name . "Deployment Engineer - v2.doc")) base64 nil ("attachment" (modification-date . "Fri, 08 Mar 2013 15:54:37 GMT") (creation-date . "Fri, 08 Feb 2013 10:09:55 GMT") (size . "34816") (filename . "Deployment Engineer - v2.doc")) "Deployment Engineer - v2.doc" nil nil)))
  -mapcat(-flatten (#("multipart/mixed" 0 15 (boundary "_002_29B227D89CBC7A47B50BF860CD7DB7BE0C50EE1FUKDC1PCMBX02wor_" buffer #<buffer  *mm*<80>> from "[email protected]" start nil)) (#<buffer  *mm*<81>> ("text/plain" (charset . "us-ascii")) quoted-printable nil ("inline") nil nil nil) (#<buffer  *mm*<82>> ("application/msword" (name . "Deployment Engineer - v2.doc")) base64 nil ("attachment" (modification-date . "Fri, 08 Mar 2013 15:54:37 GMT") (creation-date . "Fri, 08 Feb 2013 10:09:55 GMT") (size . "34816") (filename . "Deployment Engineer - v2.doc")) "Deployment Engineer - v2.doc" nil nil)))
  -flatten((#("multipart/mixed" 0 15 (boundary "_002_29B227D89CBC7A47B50BF860CD7DB7BE0C50EE1FUKDC1PCMBX02wor_" buffer #<buffer  *mm*<80>> from "[email protected]" start nil)) (#<buffer  *mm*<81>> ("text/plain" (charset . "us-ascii")) quoted-printable nil ("inline") nil nil nil) (#<buffer  *mm*<82>> ("application/msword" (name . "Deployment Engineer - v2.doc")) base64 nil ("attachment" (modification-date . "Fri, 08 Mar 2013 15:54:37 GMT") (creation-date . "Fri, 08 Feb 2013 10:09:55 GMT") (size . "34816") (filename . "Deployment Engineer - v2.doc")) "Deployment Engineer - v2.doc" nil nil)))
  eval((-flatten nic-parts) nil)
  eval-last-sexp-1(nil)
  eval-last-sexp(nil)
  call-interactively(eval-last-sexp nil nil)

Add a slice function

I'd find it very useful to have a slice function that returns a copy of the list between two indices. Would you consider this to be a worthwhile addition?

I've written a basic implementation: https://gist.github.com/Wilfred/5020622 but happy to send a pull request if you're willing to add it.

Lexical binding in dash-functional.el

This code uses lexical-binding, which is not available in Emacs < 24.

As a result, if it's included in the dash package, then the entire package should depend on (emacs "24"), which is probably undesirable since many other Emacs 23-compatible packages would then transitively depend on Emacs 24.

Possible resolutions:

  1. Use lexical-let instead if possible and drop reliance on lexical-binding
  2. Distribute dash-functional as a separate package which depends on dash and Emacs 24

void-variable it

Hi,

I noticed when releasing Ecukes 0.3 (depends on dash.el and s.el) that byte compiled files (which ELPA does automatically) does not support the --/it helpers. When I remove all *.elc and run again, it works.

An example reproduce this:

$ git clone git://github.com/rejeep/drag-stuff.git
$ cd drag-stuff
$ carton
$ carton exec elpa/ecukes-20121202.1208/ecukes features --dbg

alias -butlast to butlast

There's butlast built-in fuction, which uses subroutines implemented in C, so it should be quite a lot faster. Is there any reason this wasn't used? (other than maybe you didn't know about it?)

Newest version of dash broke emacs

Here is the debug info

Debugger entered--Lisp error: (file-error "Cannot open load file" "no such file or directory" "dash-functional")
require(dash-functional)
eval-buffer(#<buffer load-319253> nil "/Users/jeremybi/.emacs.d/elpa/dash-20130816.59/dash.el" nil t) ; Reading at buffer position 30175
load-with-code-conversion("/Users/jeremybi/.emacs.d/elpa/dash-20130816.59/dash.el" "/Users/jeremybi/.emacs.d/elpa/dash-20130816.59/dash.el" nil t)
require(dash)
eval-buffer(#<buffer load-634447> nil "/Users/jeremybi/.emacs.d/core/prelude-core.el" nil t) ; Reading at buffer position 1179
load-with-code-conversion("/Users/jeremybi/.emacs.d/core/prelude-core.el" "/Users/jeremybi/.emacs.d/core/prelude-core.el" nil t)
require(prelude-core)
eval-buffer(#<buffer load> nil "/Users/jeremybi/.emacs.d/init.el" nil t) ; Reading at buffer position 3606
load-with-code-conversion("/Users/jeremybi/.emacs.d/init.el" "/Users/jeremybi/.emacs.d/init.el" t t)
load("/Users/jeremybi/.emacs.d/init" t t)
#[0 "^H\205\262^@ \306=\203^Q^@\307^H\310Q\202;^@ \311=\204^^^@\307^H\312Q\202;^@\313\307\314\315#\203*^@\316\202;^@\313\307\314\317#\203:^@\320\nB^R\3$
command-line()
normal-top-level()

available non-local exits in the iterator functions

One of the things I like about CL is that it defines non-local exits in a lot of stuff (defuns, etc...)

I don't expect you like that... but if you do you might be interested in a patch to add blocks to the predicates and collection functions for the maps and reducers?

This would be useful as you could terminate the looping for a specific iteration if you wanted to, or perhaps for the whole thing if you wanted to.

What do you think?

See here about blocks and exits: http://www.gnu.org/software/emacs/manual/html_node/cl/Blocks-and-Exits.html#Blocks-and-Exits

Equivalent of `cl-some`

-any? is a predicate returning a boolean. -first returns me the element, not the value of the "predicate" applied to it. Is there anything better than (car (-keep 'pred list))? If not, how would I go about implementing it?

info manual

It would be nice if dash had an info manual. Perhaps this could be achieved by:

  • pandoc
  • rewriting the skeleton in org, writing a new org generator and doing org -> info
  • using some other format
  • ???

It is impossible to byte-compile file that uses --reduce

Hi. Since you use (eval list) in --reduce, it's impossible to byte compile it! This is a bit troubling when package.el tries to install the package that is using dash.

So, here's the "fixed" version.

(defmacro --reduce (form list)
  "Anaphoric form of `-reduce'."
  (let ((lv (make-symbol "list-value")))
    `(let ((,lv ,list))
       (if ,lv
           (--reduce-from ,form (car ,lv) (cdr ,lv))
         (let (acc it) ,form)))))

It evaluates the argument only once and bind it to a new local variable. Now, the whole let/if form is returned, but if only evaluates one branch, so it behaves the same as before, albeit being a bit longer.

Cycle list

In Python there's a function cycle that infinitely repeats a list.

>>> from itertools import cycle, islice
>>> def take(n, iterable):
    return list(islice(iterable, n))
... ... 
>>> take(4, cycle([1,2,3]))
[1, 2, 3, 1]

I propose to implement cycle function. If Emacs doesn't support lazyness and infinite lists, cycle could accept a length argument. This would allow to solve problems like zip up two list of different lengths in elisp.

`-fixfn` test hangs on OSX; reveals larger issue of float comparison

Here is a interesting problem: I was running the test suite on my Mac, and it hung on the test of -fixfn. I then ran the tests in a Linux virtual machine with no problem.

Closer inspection reveals that there are some subtle platform-specific (or Emacs minor-version-specific?) differences in the floating-point math in the cos function. While the fixpoint of cos can be verified on both systems

(= (cos 0.7390851332151607) 0.7390851332151607) ;; => t

On a Mac (tested on GNU Emacs 24.4.1 x86_64-apple-darwin13.4.0, NS apple-appkit-1265.21), -fixfn never converges on a solution because cos oscillates between 0.739…8 and 0.739…5.

(cos (cos 0.7390851332151608)) ;; => 0.7390851332151608

(cos (cos (cos 0.7390851332151608))) ;; => 0.7390851332151605

(cos (cos (cos (cos 0.7390851332151608)))) ;; => 0.7390851332151608

On Linux (tested on GNU Emacs 24.4.91.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.10)), however, cos does converge to the value specified in the test suite.

(cos (cos 0.7390851332151608)) ;; => 0.7390851332151607

(cos (cos (cos 0.7390851332151608))) ;; => 0.7390851332151607

(cos (cos (cos (cos 0.7390851332151608)))) ;; => 0.7390851332151607

As a temporary solution, I will submit a pull request in a moment for a change to run-tests.sh that will allow the test to be skipped.

To solve the larger issue, what do you think of the following solution, which would allow the caller of -fixfn to account for the specific nature of the function being analyzed?

  • Modify -fixfn to take two addtional optional arguments
  • an equality test function, which defaults to equal, but which could
    be a fuzzy comparison of floats.
  • an iteration limit function, which defaults to a simple counter
    with a default max value. The caller could alter the max value or
    specify some more sophisticated convergence test.
  • Modify the tests for -fixfn so that they use a fuzzy comparsion
    for floating point numbers such as the one given in the Emacs manual
    (with a narrower tolerance)
(defvar fuzz-factor 1.0e-15)
(defun approx-equal (x y)
  (or (= x y)
      (< (/ (abs (- x y))
        (max (abs x) (abs y)))
     fuzz-factor)))

If you agree on this approach, I can work on this futher and submit a pull request.

Add -sort

Sorry I'm too lazy to do a PR. Basically, builtin sort is (sort list predicate). I'd like the dash version to be (-sort predicate list). Why? Because partial application, ->> etc. This order makes much much more sense than the built-in version.

(defun -sort (predicate list)
  "Same as `sort' with exchanged arguments."
  (sort list predicate))

Alist, Plist, hashtable API

I've already discussed this a little bit with Magnar but I need to clear my thoughts a bit.

So what I'm proposing we do is an API for alists, plists and hashtables (I'll call these "maps" later). The rationale is simple: these maps, especially the first two are used ubiquitously all through emacs, yet they lack a pleasant and consistent API. One example for all, assoc key alist but plist-get plist key---who the heck should remember all that! The naming is atrocious, the calling conventions random, the functionality... not very developed.

Dash has proved itself extremely useful and successful API for lists, that's one reason I want this to be "under the same label"---it will get better recognition and the more people use it the better, we will fix bugs and add more functionality much faster. It would probably make sense to put it in a different repo, because the documentation would get reaaaaaally long otherwise.

I would only focus on emacs 24. I feel that 23 is too old to bother with, and lexical scope is sexy. 24.4. is coming soon and the next one is probably going to be 25... hopefully Debian would catch up. However, if you feel we should also support e23, I'm not hardcore opposed against it, it would only make the code a bit more messy.

There are couple existing solutions like ht.el by @Wilfred and emacs-kv by @nicferrier, and while good on their own, they suffer the same weaknesses---the API is mostly contingent, solving problems the author felt most pressing. The advantage of one unified API is clear---user needs to learn only one system to manipulate all of these data structures. I'd be very happy if the above people contributed to this library, as well as other dash contributors.

I have a temporary repository https://github.com/Fuco1/petulant-dangerzone with a couple stubs and drafts, I'll update it sometime in the near future to reflect all the discussion below. But I'd like the real thing be under Magnar's account, simply because he has billion followers and that way we can spread this much faster (talk about parasitism!)

Here's the basic overview of what I have in mind.

Distribution

I'd distribute this as three separate packages dash-pl, dash-al and dash-ht/hash, but they should all reside in one repo, so the updates can be synchronized better. As you'd see later, the documentation for all three will also be the same, so people using any of these can come to the same place to read the specs. Finally, need of one doesn't automatically imply need for the other, so it's also a bit more polite not to dump billion things on the user.

Prefix

We will have a single consistent API available for all three, only differentiated by a prefix. One issue I'm not so sure about is whether we should also keep the dash prefix. On one hand, it's a "trademark" and easily recognizable sign of the dash & friends, but on the other many people dislike it, some to the extend of simply refusing to use dash because "it has ugly names". The prefixes could be al, pl and ht if we keep the - as well, in other case it'd need to be something longer, but we can't use alist, plist or hash because that's already used. Personally, I'd favor the - solution, because it solves the namespace problem efficiently and I doubt any other package would ever use it. So it's like a dedicated namespace for us.

Basic calling conventions

The first argument will always be the map itself, so we could use the -> macro from dash to thread it through expressions. The key will be the last argument for a simple reason: we want to allow nested operations, so the last argument will actually be of &rest type allowing more than one key, it will then do the lookup recursively. The other alternative was having the functions take key or '(key1 key2 ...), but I find this really user-unfriendly---the enumeration simply feels much more natural. The value, if any, will come before the key. This is a little bit unusual, but I feel well justified by the above. Plus, we can read it as "insert/put value at key" which feels more natural than "at key insert/put value" or some other readings. If there are any more arguments, they will come inbetween but in fixed order.

Naming

All the names will follow couple conventions, so that we get a consistent overall design. Generalized functions will be designated by various suffixes. I'll demonstrate it on function insert. By default, it would take a map, a value and a key, and update or insert the value at key. The keys would be compared by equal and the value would simply be inserted.

We can generalize it to allow other equivalences, not just equal. If the function takes an equivalence relation on keys, it will have a suffix -by. Therefore, insert-by would take a map, an equivalence, a value and a key.

Further, we could make the new value in the map as a combination of the supplied value and the old value. For example, how many times you simply wanted to bump a counter 1+ in a p/alist? I know I do that a lot. So we could have a -with variant that would take a a -> a -> a function, combining the supplied and old value to give a new one. For example, to bump a counter by 1, you would call it with function + and value 1. Simple insert can be realized with function (-const value).

And finally, we may want to combine not only the values but also the key. The suffix for that would be -withkey, which adds key as the first argument to the above function, making it k -> a -> a -> a.

The -by suffix can be also reasonably used on retrieval. Further we might want to get the value not by a key, but a general predicate. For example, in an alist like auto-mode-alist, we might want to get the first value where key regexp-matches the alist key. I propose -at suffix for this, reading "get value at key which matches predicate". The predicate would be of type k -> Bool.

These prefixes can be combined to give variety of more or less generalized functions, but always in same order: -with[key], -by/-at.

Functions which serve as predicates will end with -p as is the standard elisp style and will also be aliased to a version ending in ? as in schemes.

Arguments

Arguments would follow a simple naming scheme

  • the map will be called map, be it alist, plist or hash
  • the key will be called key &rest keys,
  • the value will be called value
  • the argument required by -with[key] will be fun
  • the argument required by -by will be equiv
  • the argument required by -at will be pred
  • the argument implementing ordering on keys will be called comp

This allows us to have a single documentation for all three (and possibly other structures if someone cares to implement them). In rare case where some operation might not be possible for a certain DS, we would simply add a note somewhere informing the user about this, e.g. "This function is not available for hash tables".

Note that equiv should always implement equivalence relation and comp should always implement a total ordering, returning non-nil when keys are equal for equiv and when first is \leq to the second for comp.

Anaphora

We can support anaphoras in the same way dash does, using it and other for the arguments. I have not yet decided what would be an anaphora for ternary functions (like the one used in -withkey).

Destructive variants

I think it makes sense to have both non-destructive and destructive versions. Destructive versions can simply always be marked by suffix ! as is common in scheme and other lisps. But from the start, I'd focus on implementing "pure" versions (which means we still allow shared sub-structure, but all the necessary conses will be re-created). Destructive versions would probably provide a bit of a speed up and sometimes make the operations more natural, e.g. there would be no need to reassign the result to the variable: (setq map (-operation map ...))

Conclusion

I've learned a lot about APIs by contributing to dash, mostly that it's damn difficult to design. So I don't blame emacs devs for the mess, but I feel after 30 years it's time for something new. That said, the potentiality to get this to core is basically none, because "we already have cl" or similar argument. Meh. I don't care about core anymore anyway.

Thoughts?

Function to split list based on a predicate into two lists

Another idea for a useful function (I've implemented this while working on my current project)

I called it -split-by. I think it fits with the -split-* that it splits the list into two. Might be a bit confusing together with -split-with, but...

In haskell they call this partition, but you've already used that:

partition :: (a -> Bool) -> [a] -> ([a], [a])
The partition function takes a predicate a list and returns the pair of lists of elements which do and do not satisfy the predicate, respectively; i.e., 
partition p xs == (filter p xs, filter (not . p) xs)

Here's the elisp code

(defmacro --split-by (form list)
  "Anaphoric form of `-split-by'."
  (let ((l (make-symbol "left"))
        (r (make-symbol "right")))
    `(let (,l ,r)
       (--each ,list (if ,form (!cons it ,l) (!cons it ,r)))
       (list (nreverse ,l) (nreverse ,r)))))

(defun -split-by (pred list)
  "Returns a list of ((--filter PRED LIST) (--remove PRED LIST))."
  (--split-by (funcall pred it) list))

(-split-by (lambda (num) (= 0 (% num 2))) '(1 2 3 4 5 6 7)) ;; => '((2 4 6) (1 3 5 7))
(-split-by (lambda (num) (> 3 num)) '(7 5 3 5 1 3 2 1)) ;; => '((1 2 1) (7 5 3 5 3))
(--split-by (< it 5) '(3 7 5 9 3 2 1 4 6)) ;; => '((3 3 2 1 4) (7 5 9 6)) -- useful for quicksort :)
(-split-by 'cdr '((1 2) (1) (1 2 3) (4))) ;; => '(((1 2) (1 2 3)) ((1) (4))) -- split into lists of 1 element and lists of 2+ elements

I don't know how familiar you are with haskell, but Data.List is a good inspiraton: http://www.haskell.org/ghc/docs/7.0.4/html/libraries/base/Data-List.html

However, I think you have almost everything already done.

New function: -tree-map

This is another useful abstraction and a fairly common pattern. Works like map but also recursively maps the function to sublists (that is, a "tree" represented by nested lists).

;; helper function
(defun -cons-pair? (con)
  "Return non-nil if CON is true cons pair.
That is (A . B) where B is not a list."
  (and (listp con)
       (not (listp (cdr con)))))

;; the argument order: apply FN to TREE then apply FOLDER, logical :P
(defun -tree-map (fn tree &optional folder)
  "Apply FN to each element of TREE, and make a list of the results.
If elements of TREE are lists themselves, apply FN recursively to
elements of these nested lists.

If optional argument FOLDER is non-nil apply this function to the
result of applying FN to each list.  This will convert cons pairs
to lists before applying the FOLDER."
  (cond 
   ((not tree) nil)
   ;; "real" cons pair (a . b), that is `b' is not a list.  This still
   ;; wouldn't work with e.g. (1 2 3 . 4).  ((1 2 3) . 4) is fine.
   ((-cons-pair? tree)
    (let ((res (cons (-tree-map fn (car tree) folder)
                     (-tree-map fn (cdr tree) folder))))
      (if folder (apply folder (car res) (cdr res) nil) res)))
   ((listp tree)
    (let ((res (mapcar (lambda (x) (-tree-map fn x folder)) tree))) 
      (if folder (apply folder res) res)))
   (t
    (funcall fn tree))))

(defmacro --tree-map (form tree &optional folder)
  "Anaphoric form of `-tree-map'."
  `(-tree-map (lambda (it) ,form) ,tree ,folder))

;; examples
(-tree-map '1+ '(1 (2 3) 4)) ;; => (2 (3 4) 5)
(--tree-map (+ 2 it) '(1 (2 3) 4)) ;; => (3 (4 5) 6)
(--tree-map (case it (+ '-) (- '+) (t it)) '(+ 1 2 (- 4 5) (+ 3 4))) ;; => (- 1 2 (+ 4 5) (- 3 4))

This can be used to implement other functions, such as:

;; this version can also flatten alists. SUPER HANDY!
(defun -flatten (list)
  "Take a nested list LIST and return its content as a single, flat list."
  (-tree-map 'list list 'append))

(-flatten '(("(" . ")") ("[" . "]") ("{" . "}") ("`" . "'"))) ;; => ("(" ")" "[" "]" "{" "}" "`" "'")

;; possible name: -clone
(defun -copy (list)
  "Create a deep copy of LIST.
The new list has the same elements but all cons are replaced with
new ones.  This is useful when you need to clone a structure such
as plist or alist."
  (-tree-map 'identity list))

(defmacro -R (&rest forms)
  "Return a function that applies FORMS to (list it)."
  `(lambda (&rest it) ,@forms))

(defun -tree-reverse (tree)
  "Reverse the TREE while preserving the structure."
  (-tree-map 'identity tree (-R (nreverse it))))

(-tree-reverse '((1 (2 3)) (4 5 6))) ; ;; => ((6 5 4) ((3 2) 1))

;; some more examples
(-tree-map 'identity '((1 4 5) (0 (1 2 (3 (3 4) 4)))) '+) ;; => 27
(--tree-map (list (+ 2 it)) '((1 4 5) (0 (1 2 (3 (3 4) 4)))) 'append) ;; => (3 6 7 2 3 4 5 5 6 6)
;; number of items in tree
(--tree-map 1 '((1 4 5) (0 (1 2 (3 (3 4) 4)))) '+) ;; => 10
;; tree depth
(--tree-map 0 '((1 4 5) (0 (1 2 (3 (3 4) 4)))) (-R (1+ (apply 'max it)))) ;; => 5

;; generate HTML from sexps!
(-tree-map 'identity '(html 
                       (head (title "Hello! " "this is" " my homepage"))
                       (body 
                        (p "Welcome, this is " (b "amazing") " fun")
                        (p "Second paragraph."))) 
           (-R (concat
                "<"
                (symbol-name (car it))
                ">"
                (apply 'concat (cdr it))
                "</"
                (symbol-name (car it))
                ">"
                )))

;; output split for readability
;; "<html><head><title>Hello! this is my homepage</title></head>
;; <body><p>Welcome, this is <b>amazing</b> fun</p><p>Second paragraph.</p></body></html>"

Especially the -copy/-clone function is really handy if you work a lot with plists. Because their internal crazy rules for updates... it's just safer to do a copy each time.

Adding -union ?

There's -intersection and -difference, I see no reason why -union should not be added.

Here's a snippet for that (I don't think it's even worth forking)

(defun -union (list1 list2)
  (let ((result (nreverse list1)))
    (--each list2 (when (not (-contains? result it)) (!cons it result)))
    (nreverse result)))

It works very similarly to -distinct, only initialize the result with reverse of list1. The resulting list has proper order, that is list1 followed by elements of list2 that were not on list1.

The run-time isn't the best possible, but I think it's apropriate for a basic implementation: O(m*n). But then, most of the rest are O(n^2)...

Anyhow, this library is AWESOME! Ever since I've found it I use it everywhere (it's like having haskell in lisp, which is so cool :)) Plus, I really like the name :D

Edit:
Here are the docs and some examples.

"Return a new list containing the elements of LIST1 and elements of LIST2 that were not present in LIST1. The test for equality is done with `equal', or with `-compare-fn' if that's non-nil."

(-union '(1 2 3) '(3 4 5)) ;; => '(1 2 3 4 5)
(-union '(1 2 3 4) '()) ;; => '(1 2 3 4)
(-union '(1 1 2 2) '(3 2 1)) ;; => '(1 1 2 2 3)

However, I'm not sure if nreverse produce "new list". If not, the initalization should be done with --each to generate a copy first (which will also conveniently reverse it)

New function: Insert

Hey Magnars,

Im looking for a function that adds an element to a list.

Something like:

(-insert 'x 1 '(a b c))
=> '(a x b c)

Is there anything in dash.el for this? would you accept a pull request for it?

Thanks,

Joel

-mapcat doesn't work on strings as the docstring suggests

The docstring of -mapcat talks about applying concat, so I assumed it would work with strings. However:

(-mapcat (lambda (x) (number-to-string x)) (list 1)) ;; "1"

but:

(-mapcat (lambda (x) (number-to-string x)) (list 1 2)) ;; (49. "2")

--mapcat actually uses append. I'd suggest that calling --mapcat --mapappend and making --mapcat use concat. However, that would break backwards compatibility, so I'm not sure what the best solution is here.

symbol lists?

This is often necessary but there's nothing in emacs for it:

(defun list-symbols (regex)
  (let ((lst))
    (mapatoms
     (lambda (a)
       (when (string-match-p regex (symbol-name a))
         (push a lst))))
    lst))

it's heavily related to dash core function, list processing, but it isn't exactly list processing per se. This is more of a very common generator function.

Is it worthwhile adding something like this?

Please stop bundling third-party libraries

dash is mirrored on the Emacsmirror, which is a large up-to-date collection of Emacs packages.

As the maintainer of the mirror I am trying to resolve feature conflicts that result from one package bundling libraries from another package. I suspect in most cases these libraries were included so that users would not have to find, download and install each dependency manually.

Unfortunately bundling also has negative side-effects: if the bundled libraries are also installed separately, then it is undefined which version actually gets loaded when the respective feature is required.

Initially that isn't a big problem but in many cases upstream changes are not included or only after a long delay. This can be very confusing for users who are not aware that some of the installed packages bundle libraries which are also installed separately. In other cases bugs are fixed in the bundled versions but the fixes are never submitted to upstream.

Also now that Emacs contains the package.el package manager there is a better way to not require users to manually deal with dependencies: add the package (and when that hasn't been done yet the dependencies) to the Melpa package repository. If make is required to install your make you might want to add it to the el-get (another popular package manager) package repository instead.

Alternatively if you want to keep bundling these libraries please move them to a directory only containing bundled libraries and add the file ".nosearch" to that directory. You can then load the library using something like this:

(or (require 'bundled nil t)
    (let ((load-path
           (cons (expand-file-name "fallback-libs"
                                   (or load-file-name buffer-file-name)
                                   load-path))))
      (require 'bundled)))

Of course if your version differs from the upstream version this might not be enough in which case you should make an effort to get your changes merged upstream.

dash bundles at least the following libraries:

  • ert

Best regards,
Jonas

Smarter &plist, &alist destructuring

Most of the time we write the destructure like this:

(&plist :key key :otherkey otherkey)

where the variable to which we destructure is the same as they key sans the :. I'm proposing this: when * is appended to the selector (so it's e.g. &plist*) the name of the binding variable is derived from the key in the following "smart way":

  • a key :foo is converted into foo variable
  • a key foo is converted into foo variable
  • a key "foo" is converted into foo variable

This covers pretty much 99% of use-cases of mapping structures.

Ideas? Instead of * we might use a different symbol, but stars often means some variation in lisp so I think it fits well.

Byte compiler warnings

Save the following code as installdash.el:

(require 'package)

(defun main ()
  (setq package-user-dir (expand-file-name "dash-elpa"))
  (add-to-list 'package-archives
               '("melpa" . "http://melpa.milkbox.net/packages/"))
  (package-initialize)
  (package-refresh-contents)
  (package-install 'dash))

Running it with emacs -Q --batch -l installdash.el -f main produces the following output:

Contacting host: melpa.milkbox.net:80
Saving file /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/archives/melpa/archive-contents...
Wrote /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/archives/melpa/archive-contents
Contacting host: elpa.gnu.org:80
Saving file /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/archives/gnu/archive-contents...
Wrote /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/archives/gnu/archive-contents
Contacting host: melpa.milkbox.net:80
Wrote /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/dash-20140108.559/dash.el
Wrote /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/dash-20140108.559/dash-autoloads.el
Making version-control local to dash-autoloads.el while let-bound!
Generating autoloads for dash.el...
Generating autoloads for dash.el...done
Saving file /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/dash-20140108.559/dash-autoloads.el...
Wrote /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/dash-20140108.559/dash-autoloads.el
Wrote /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/dash-20140108.559/dash-pkg.el
Checking /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/dash-20140108.559...
Compiling /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/dash-20140108.559/dash-autoloads.el...
Compiling /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/dash-20140108.559/dash-pkg.el...
Wrote /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/dash-20140108.559/dash-pkg.elc
Compiling /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/dash-20140108.559/dash.el...

In -grade-up:
dash.el:795:8:Warning: -map called with 1 argument, but requires 2

In -grade-down:
dash.el:805:8:Warning: -map called with 1 argument, but requires 2

In -sort:
dash.el:968:8:Warning: -sort being defined to take 2 args, but was previously
    called with 1-2
Wrote /var/folders/t4/wjkpdwzx26x9vcf1pql981gm0000gn/T/installdash549346AZ/dash-20140108.559/dash.elc
Done (Total of 2 files compiled, 1 skipped)

Please note the byte compiler warnings.

Is this a bug in dash? Or am I doing wrong? Or can I just ignore these?

RFE: -remove-element

a remove element would be nice 😄 (synonym with delq, which I always forget the name of)

zip with arbitrary number of lists

In Python i can zip arbitrary number of lists:

>>> zip(range(3), range(3,6), range(6,9))
[(0, 3, 6), (1, 4, 7), (2, 5, 8)]

How do i do that in dash.el? See also: #14

Install of dash-20130816.59 via ELPA fails

Installing the latest dash via ELPA fails during compilation with this final line of,

dash.el:952:1:Error: Cannot open load file: dash-functional

Looking in the package directory under .emacs.d/elpa/dash-20130816.59 it seems like that file, dash-functional.el, is missing from the package now?

-max-by doesn't make sense.

Well. First of all the pred there isn't a predicate at all. It is a function that transforms a value into another value. What's more confusing is that it must be of type a -> Int for the function to work properly. This is all very limiting and confusing.

The -by there should indicate you give it a comparison function to compare two values in the list that returns t or nil depending on the result fo comparison (like the callback for -sort)

If you want to have an "order by known type" function it should take a transfomation function into some ordering. Since elisp doen't have an ordering type, it could be integers. This should be called -max-after (a transformation) or something like that and could be specified as:

(nth (-index-of (apply '-max (-map transformation list))) list) ;; note that -index-of doesn't exist yet

But it's not very often you can do a sensible transformation from whatever into integers, so the following solution is even better (and nicely reuses the available tools) and is much more general.

In Haskell there's a handy combinator on with which you can do something like

compare `on` head

this would return a comprison function that would order lists by their car. (compare is a polymorphic function a -> a -> Ordering). Or to order list of lists by length you'd do

compare `on` length

The interface in elisp would look something like

(-max-by (on '< 'length) '((1 2) (1 2 3) (1) ()))

so the first argument of on is a comparison function (returning t or nil) that works ON the results of the second function (and that is applied to the elements of the list).

N.B. You could then use the on combinator in -sort as well as other possible functions that would need a comparison function

Thoughts?

Shorthand lambda

The anaphoric functions makes inline functions nice and concise, but (lambda ..) can feel a bit clunky to use elsewhere. What about a -fn (or -f) macro:

(-fn "abc")     ;; => (lambda (&rest %&) "abc")
(-fn (* % %))   ;; => (lambda (%1 &rest %&) (* %1 %1)) -- % is translated to %1
(-fn (* %1 %2)) ;; => (lambda (%1 %2 &rest %&) (* %1 %2))
(-fn (* %2 %3)) ;; => (lambda (%1 %2 %3 &rest %&) (* %2 %3))

For extra sugar, (-fn f x y) could expand to (-fn (f x y)) if (functionp f).

autoloads

Would that make sense to flag all the public functions as autoload?

Sync ->/->> indentation with Clojure

You know I'm fond of the current way ->/->> are indented, but I feel that in the interest of compatibility (and the principle of least surprise) we should probably use the same indentation settings in dash.el as in clojure-mode.

Slice with step

In Python i can slice with step:

>>> a = [1,2,3,4,5,6]
>>> a[::2]
[1, 3, 5]

In dash.el it's not obvious how can i accomplish the same. Do you think adding a slice with step mechanism is a good idea?

New destructuring forms work fine unless in a package installed from MELPA

Hi, I've ran into something pretty strange.

I have a project called omnisharp-emacs that uses your library. I
recently found the -let forms (and friends) that allow destructuring
and like them a lot.

However, I discovered that while the code can be compiled and tested,
when installing from MELPA the destructuring forms I use give an error:
Invalid function: --mapcat

You can see the code here:
https://github.com/OmniSharp/omnisharp-emacs/blob/melpa-testing/omnisharp.el#L20

I see internally --mapcat is indeed used, but don't know why this
would be an error in my code. Indeed I found out --mapcat itself
compiles just fine with this method.

Since the problem is pretty contrived I'm not sure who to talk to -
maybe you could have an idea?

I set up a sample environment with a test script that you can try to
replicate the error:

mika@lusikka /tmp
  % git clone https://github.com/OmniSharp/omnisharp-emacs.git omnisharp-emacs-test                                                                                                                          
Cloning into 'omnisharp-emacs-test'...
remote: Counting objects: 2113, done.
remote: Compressing objects: 100% (53/53), done.
remote: Total 2113 (delta 23), reused 0 (delta 0)
Receiving objects: 100% (2113/2113), 2.08 MiB | 906.00 KiB/s, done.
Resolving deltas: 100% (1059/1059), done.
Checking connectivity... done

mika@lusikka /tmp
  % cd omnisharp-emacs-test                                                                                                                                                                                  

mika@lusikka /tmp/omnisharp-emacs-test [master]
± % git checkout origin/melpa-testing                                                                                                                                                                        
Note: checking out 'origin/melpa-testing'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:

  git checkout -b new_branch_name

HEAD is now at ed1e675... testing

mika@lusikka /tmp/omnisharp-emacs-test [ed1e675]
± % ./run-melpa-build-test.sh                                                                                                                                                                                
Cloning into 'melpa'...
remote: Counting objects: 16526, done.
remote: Total 16526 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (16526/16526), 4.47 MiB | 1.38 MiB/s, done.
Resolving deltas: 100% (8374/8374), done.
Checking connectivity... done
 • Removing package sources ...
rm -rf ./working/*
 • Removing packages ...
rm -rfv ./packages/*
removed ‘./packages/index.html’
 • Removing json files ...
rm -vf html/archive.json html/recipes.json
 • Removing sandbox files ...
if [ -d './sandbox' ]; then \
        rm -rfv './sandbox/elpa'; \
        rmdir './sandbox'; \
    fi
 • Building recipe omnisharp ...
/usr/bin/timeout -k 60 600 emacs --no-site-file --batch -l package-build.el --eval "(let ((package-build-stable nil) (package-build-write-melpa-badge-images t) (package-build-archive-dir (expand-file-name \"./packages\" pb/this-dir))) (package-build-archive 'omnisharp))"

;;; omnisharp

Fetcher: github
Source: OmniSharp/omnisharp-emacs

Cloning git://github.com/OmniSharp/omnisharp-emacs.git to /tmp/omnisharp-emacs-test/melpa/working/omnisharp/
Note: this :files spec is equivalent to the default.
/tmp/omnisharp-emacs-test/melpa/working/omnisharp/example-config-for-evil-mode.el -> /tmp/omnisharp23276NmN/omnisharp-20141201.2121/example-config-for-evil-mode.el
/tmp/omnisharp-emacs-test/melpa/working/omnisharp/omnisharp.el -> /tmp/omnisharp23276NmN/omnisharp-20141201.2121/omnisharp.el
Wrote /tmp/omnisharp-emacs-test/melpa/packages/omnisharp-readme.txt
File: /tmp/omnisharp-emacs-test/melpa/packages/omnisharp-20141201.2121.entry
Contacting host: img.shields.io:80
img.shields.io/80 Name or service not known
make: [recipes/omnisharp] Error 255 (ignored)
 ✓ Wrote 4,0K -rw-r--r-- 1 mika mika 228 joulu  1 23:11 ./packages/omnisharp-20141201.2121.entry
 12K -rw-r--r-- 1 mika mika 10K joulu  1 23:11 ./packages/omnisharp-20141201.2121.tar
4,0K -rw-r--r-- 1 mika mika 414 joulu  1 23:11 ./packages/omnisharp-readme.txt 
 Sleeping for 0 ...
sleep 0

Contacting host: stable.melpa.org:80
Saving file /home/mika/.emacs.d/elpa/archives/melpa-stable/archive-contents...
Loading vc-git...
Wrote /home/mika/.emacs.d/elpa/archives/melpa-stable/archive-contents
Contacting host: melpa.org:80
Saving file /home/mika/.emacs.d/elpa/archives/melpa/archive-contents...
Wrote /home/mika/.emacs.d/elpa/archives/melpa/archive-contents
installing file /tmp/omnisharp-emacs-test/melpa/packages/omnisharp-20141201.2121.tar
Parsing tar file...
Parsing tar file...done
Extracting omnisharp-20141201.2121/example-config-for-evil-mode.el
Wrote /home/mika/.emacs.d/elpa/omnisharp-20141201.2121/example-config-for-evil-mode.el
Extracting omnisharp-20141201.2121/omnisharp-pkg.el
Wrote /home/mika/.emacs.d/elpa/omnisharp-20141201.2121/omnisharp-pkg.el
Extracting omnisharp-20141201.2121/omnisharp.el
Wrote /home/mika/.emacs.d/elpa/omnisharp-20141201.2121/omnisharp.el
Making version-control local to omnisharp-autoloads.el while let-bound!
Generating autoloads for example-config-for-evil-mode.el...
Generating autoloads for example-config-for-evil-mode.el...done
Generating autoloads for omnisharp-pkg.el...
Generating autoloads for omnisharp-pkg.el...done
Generating autoloads for omnisharp.el...
Generating autoloads for omnisharp.el...done
Saving file /home/mika/.emacs.d/elpa/omnisharp-20141201.2121/omnisharp-autoloads.el...
Wrote /home/mika/.emacs.d/elpa/omnisharp-20141201.2121/omnisharp-autoloads.el
Checking /home/mika/.emacs.d/elpa/omnisharp-20141201.2121...
Compiling /home/mika/.emacs.d/elpa/omnisharp-20141201.2121/example-config-for-evil-mode.el...

In toplevel form:
example-config-for-evil-mode.el:3:26:Warning: reference to free variable
    `omnisharp-mode-map'
example-config-for-evil-mode.el:38:7:Warning: assignment to free variable
    `omnisharp-auto-complete-want-documentation'

In end of data:
example-config-for-evil-mode.el:39:1:Warning: the following functions are not
    known to be defined: evil-define-key, omnisharp-unit-test
Wrote /home/mika/.emacs.d/elpa/omnisharp-20141201.2121/example-config-for-evil-mode.elc
Compiling /home/mika/.emacs.d/elpa/omnisharp-20141201.2121/omnisharp-autoloads.el...
Compiling /home/mika/.emacs.d/elpa/omnisharp-20141201.2121/omnisharp-pkg.el...
Compiling /home/mika/.emacs.d/elpa/omnisharp-20141201.2121/omnisharp.el...

In toplevel form:
omnisharp.el:20:1:Error: Invalid function: --mapcat
Done (Total of 1 file compiled, 1 failed, 2 skipped)

Thanks in advance!

[discussion] Lazy streams?

I've recently been playing around with implementing lazy streams in Elisp (https://github.com/shosti/smash.el), and it occurred to me that it might be possible to integrate laziness into dash.el instead of re-implementing lazy versions of everything. Is that something you'd be interested in pursuing? (I'm not yet sure of their performance or general usefulness for Emacs programming, but they allow for some neat things).

I think it might even be possible without breaking backwards-compatibility or requiring Emacs 24. Basically, you'd need a macro that would create two versions of each function, one that outputs a stream and one that outputs a list (maybe postfix lazy versions with a symbol, i.e. -take$ or something). The lazy version would only be generated in Emacs 24. In the macro, you'd also coerce the input to a list or stream (for the eager and lazy versions, respectively). smash.el already handles inputs that are either streams or lists, through some basic type-tagging.

This would probably be at odds with the approach described in #43, but it would have the advantage of being extensible to user-defined data structures--you'd just need a mechanism to "install" a coercion function for the data structure (similar to the seq abstraction in Clojure). Personally, I'm a fan of Clojure's "anything goes in, but seqs come out" approach to generic list functions, and I think guessing the desired output type without a static type system is kind of problematic. But I could also see laziness being outside the scope of dash.el (I don't really have any real need for lazy streams, and was just implementing them for fun). Let me know what you think.

v2.10 byte compile error: Symbol's function definition is void: -all\?

From 24.4:

In -table:
dash.el:955:25:Warning: value returned from (car v) is unused

In dash--match-cons-skip-cdr:
dash.el:1129:15:Warning: reference to free variable `s'
dash.el:1494:1:Error: Symbol's function definition is void: -all\?
Wrote /tmp/makepkg/emacs-dash/src/dash.el-2.10.0/dash-functional.elc

The (car v) warning goes away in trunk emacs.

group/groupby and partitioning functions (naming) in general

There's the group/groupby from Data.List, which is pretty useful. It's not yet present in dash and it generalizes -partition-by. The docs from hackage:

The group function takes a list and returns a list of lists such that the concatenation of the result is equal to the argument. Moreover, each sublist in the result contains only equal elements. For example,

 group "Mississippi" = ["M","i","ss","i","ss","i","pp","i"]

It is a special case of groupBy, which allows the programmer to supply their own equality test.

There already is -group-by in dash but with different semantics. I would advice to alias the function and deprecate the old name, then add the proposed functions with that name (after some time, so people can migrate their code).

The simple group could be omitted since it's just groupBy (==). -partition-by from dash can be implemented as (haskell code)

partitionBy f = groupBy ((==) `on` f)

Speaking about function names, I would strongly push towards regularizing the names of functions based on the haskell API. There isn't any API in elisp, so we can name it whatever, and having the same API as haskell would be benefitial for haskell programmers (and others from languages that inspired their APIs by haskell, which is a lot), while not being any drawback for elisp programmers who would need to learn some API anyway.

For example, -separate in haskell is partition, while -partition has completely differnent semantics in dash. -split-with is called span (span the predicate over longest prefix). The current -partition-* could probably be called more precisely too, something to do with sublists.

Also the usage of -with and -by is inconsistent in dash. Sometimes they take functions (a -> b) and sometimes predicates (a -> a -> Bool). Suffix -by should always take predicates or comparators and -with unary functions.

Warnings while installing elpa package.

My Compile Log returns:

Entering directory `/home/marcin/.local/share/idemacs/elpa/dash-20140811.523/'

In -flatten-n:
dash.el:303:43:Warning: reference to free variable `it'

In -table:
dash.el:951:25:Warning: value returned from (car v) is unused

Is there any chance to fix and silence it?

destructuring

cl has a pretty nice macro called destructuring-bind that lets you let-bind variables by pulling a data structure apart (a-la Clojure). Here's a typical example involving lists:

(destructuring-bind
      (first second)
    '(1 2)
  (format t "~%~%;;; => first:~a second:~a~&" first second))
;;; > first:1 second:2

I think that something like this will fit in dash.el nicely and will further reduce the need for mixing dash.el and cl.

Make dash a sequence API instead of a list API

While lists are the most popular portion of Emacs Lisp's sequential API we still have to consider other sequential structures like vectors and strings. Without support for them dash cannot replace the sequential API provided by cl-lib in all possible scenarios and that's a shame, since dash's API is so much better.

We've discussed this already at Twitter and I know that at least a few people like @lunaryorn and @joelmccracken support my suggestion. Ideally when operating on a string/vector the functions would return a string or vector, but even a list would do (I assume this would be much easier to implement).

-zip to "merge" two lists together

I'm pretty surprised this isn't here already! :D I just had a need for this so here's the code:

(defun -zip (list1 list2 &optional init)
  "Zip the two lists together.  Return the list where elements
are cons pairs with car being element from LIST1 and cdr being
element from LIST2.  The length of the returned list is the
length of the shorter one.

Optionally, LIST2 can be a function. Then the values that it
generates are taken instead.  The function should take one
argument which is the last generated value.  INIT is the initial
value for this function.  The first value inserted into the
zipped list is INIT, the second is (list2 INIT),
third (list2 (list2 INIT)) etc."
(let ((r nil))
    (if (not (functionp list2))
        (while (and list1 list2)
          (!cons (cons (car list1) (car list2)) r)
          (!cdr list1)
          (!cdr list2))
      (let ((v init))
        (while list1
          (!cons (cons (car list1) v) r)
          (setq v (funcall list2 v))
          (!cdr list1))))
    (nreverse r)))

Examples:

(-zip '(1 2 3) '(a b c d)) ;; => ((1 . a) (2 . b) (3 . c))
(-zip '((1 x) (2 y) (3 z)) '(a b)) ;; => (((1 x) . a) ((2 y) . b))
;; index the list
(-zip '(a b c d e) #'1+ 1) ;; => ((a . 1) (b . 2) (c . 3) (d . 4) (e . 5))

The last example is in fact so cool that it maybe even deserves its own function. Up to you.

[discussion] API changes [breaks backward compatibility]

  • -split-at, -split-with and -separate should return (a . b) instead of a list. It makes accessing the elements needlessly obtrusive (cadr instead of cdr for the 2nd item). These functions will most likely never return tripples so the list return value has little meaning there.
  • -partition-by should be renamed to -partition-with. the -by prefix should be kept for predicative use. There can be, in fact, a new -partition-by that would compare the element to the previous via some equivalence (now this uses equal by default). So it would take a comparator or predicate. This is related to #49, a -partition-by with a predicate is basically groupBy from haskell (in the thread is also the implementation of proposed -partition-with)
  • same goes to -partition-by-header, in fact, it can also be implemented in terms of the above function (I think).
  • -group-by could also be made more powerful. As I see it, it basically computes "quotient sets" of equivalence relations, but the one supplied is implicit by equal here. An actual -quotient-by would be also cool (it would work much like -partition-with but without respecting the order, that is it would truly merge all equivalent partitions). So, -group-by should be renamed -group-with, and -group-by should take a predicate to compare the "keys" too. -quotient-by is the same but with dropping the car of the results (which means it doesn't need explicit transformation argument either)

Note that all the "implicit split functions" can be implemented in terms of the predicative versions, either by -on combinator or by explicitely stating the transformation for keys.

The new api:

  • -split-at returns ((-take n list) . (-drop n list))
  • -split-with is renamed to -split-by and returns ((-take-while pred list) . (-drop-while pred list)). Alternative name is -split-while.
  • -separate returns ((-filter pred list) . (-remove pred list))
  • -partition-by renamed to -partition-with, takes (fn list)
  • -partition-by takes (comp list), splits each time the successive elements aren't equal by comp. Note that -partition-with is -partition-by (-on 'equal fn)
  • -partition-by-header, same as above.
  • -group-by renamed to -group-with, takes (fn list), returns alist ((result1 x11 x12 ...) (result2 x21 y22 ...)) where xij maps to result_i. This function makes a little bit of sense also with the name -group-by, but I think for consistency it's better if all the functions where there is a transformation of input to something via (a -> b) function should be called the same, that is with suffix -with. The argument for -by suffix is that it partitions by equivalence on the result of the transformation, so two elements are equal if they map to the same thing => this is the kernel of the map. But the fact that it makes it into alist is "dirty" form algebraic POV :P
  • -quotient-by takes (comp list) and calculates the quotient set of list by eqv induced by comp. The union of all the partitions gives back original list (not necessarily in same order). There can be a variant that makes all the elements in the subsets unique as well. Note that -group-with is same as (--map (cons (fn (car it)) it) (-quotient-by (-on 'equal fn) list))

Ideas, comments?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.