emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/dash 657ee8b 040/439: Slight improvements to docs.


From: Phillip Lord
Subject: [elpa] externals/dash 657ee8b 040/439: Slight improvements to docs.
Date: Tue, 04 Aug 2015 20:26:09 +0000

branch: externals/dash
commit 657ee8b72b3ce0b5595ca666375cc1f5eab5d429
Author: Magnar Sveen <address@hidden>
Commit: Magnar Sveen <address@hidden>

    Slight improvements to docs.
---
 README.md |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/README.md b/README.md
index ec26500..44f4449 100644
--- a/README.md
+++ b/README.md
@@ -70,6 +70,9 @@ first item in `list`, then applying `fn` to that result and 
the 2nd
 item, etc. If `list` contains no items, returns `initial-value` and
 `fn` is not called.
 
+In the anaphoric form `!!reduce-from`, the accumulated value is
+exposed as `acc`.
+
 ```cl
 (!reduce-from '+ 7 '(1 2)) ;; => 10
 (!reduce-from (lambda (memo item) (+ memo item)) 7 '(1 2)) ;; => 10
@@ -84,6 +87,9 @@ contains no items, `fn` must accept no arguments as well, and
 reduce returns the result of calling `fn` with no arguments. If
 `list` has only 1 item, it is returned and `fn` is not called.
 
+In the anaphoric form `!!reduce`, the accumulated value is
+exposed as `acc`.
+
 ```cl
 (!reduce '+ '(1 2)) ;; => 3
 (!reduce (lambda (memo item) (format %s-%s memo item)) '(1 2 3)) ;; => 1-2-3
@@ -136,7 +142,7 @@ Thus function `fn` should return a collection.
 
 Takes a function `fn` and fewer than the normal arguments to `fn`,
 and returns a fn that takes a variable number of additional `args`.
-When called, the returned function calls `fn` with args +
+When called, the returned function calls `fn` with `args` +
 additional args.
 
 ```cl



reply via email to

[Prev in Thread] Current Thread [Next in Thread]