Merge pull request #105 from fbergroth/debug-forms

Update debug forms
master
Magnar Sveen 11 years ago
commit faeb61a0b8
  1. 6
      README.md
  2. 16
      dash.el

@ -1677,7 +1677,7 @@ 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`](#-let-varlist-rest-body).
Note: binding is done according to [`-let*`](#-let-varlist-rest-body).
```el
(-when-let* ((x 5) (y 3) (z (+ y 4))) (+ x y z)) ;; => 15
@ -1702,7 +1702,7 @@ 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`](#-let-varlist-rest-body).
Note: binding is done according to [`-let*`](#-let-varlist-rest-body).
```el
(-if-let* ((x 5) (y 3) (z 7)) (+ x y z) "foo") ;; => 15
@ -2256,7 +2256,7 @@ Change `readme-template.md` or `examples-to-docs.el` instead.
- [Johan Andersson](https://github.com/rejeep) contributed `-sum`, `-product` and `-same-items?`
- [Christina Whyte](https://github.com/kurisuwhyte) contributed `-compose`
- [Steve Lamb](https://github.com/steventlamb) contributed `-cycle`, `-pad`, `-annotate`, `-zip-fill` and an n-ary version of `-zip`.
- [Fredrik Bergroth](https://github.com/fbergroth) made the `-if-let` family use `-let` desctructuring and improved script for generating documentation.
- [Fredrik Bergroth](https://github.com/fbergroth) made the `-if-let` family use `-let` destructuring and improved script for generating documentation.
Thanks!

@ -1126,8 +1126,8 @@ sorts it in descending order."
`(pop ,source))
(t
`(progn
(setq ,s (nthcdr ,skip-cdr ,s))
(pop ,s)))))
(setq ,source (nthcdr ,skip-cdr ,source))
(pop ,source)))))
(defun dash--match-cons-get-car (skip-cdr source)
"Helper function generating idiomatic code to get nth car."
@ -1496,8 +1496,8 @@ See `-let' for the description of destructuring mechanism."
VARS and do THEN, otherwise do ELSE. VARS-VALS should be a list
of (VAR VAL) pairs.
Note: binding is done according to `-let'."
(declare (debug ((&rest (symbolp form)) form body))
Note: binding is done according to `-let*'."
(declare (debug ((&rest (sexp form)) form body))
(indent 2))
(->> vars-vals
(-mapcat (-lambda ((pat src)) (dash--match pat src)))
@ -1512,7 +1512,7 @@ Note: binding is done according to `-let'."
otherwise do ELSE. VAR-VAL should be a (VAR VAL) pair.
Note: binding is done according to `-let'."
(declare (debug ((symbolp form) form body))
(declare (debug ((sexp form) form body))
(indent 2))
`(-if-let* (,var-val) ,then ,@else))
@ -1528,8 +1528,8 @@ otherwise do ELSE."
VARS and execute body. VARS-VALS should be a list of (VAR VAL)
pairs.
Note: binding is done according to `-let'."
(declare (debug ((&rest (symbolp form)) body))
Note: binding is done according to `-let*'."
(declare (debug ((&rest (sexp form)) body))
(indent 1))
`(-if-let* ,vars-vals (progn ,@body)))
@ -1538,7 +1538,7 @@ Note: binding is done according to `-let'."
VAR-VAL should be a (VAR VAL) pair.
Note: binding is done according to `-let'."
(declare (debug ((symbolp form) body))
(declare (debug ((sexp form) body))
(indent 1))
`(-if-let ,var-val (progn ,@body)))

Loading…
Cancel
Save