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

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

[elpa] externals/dash eea3c53 045/426: Move function list above anaphori


From: Phillip Lord
Subject: [elpa] externals/dash eea3c53 045/426: Move function list above anaphoric function description.
Date: Tue, 04 Aug 2015 19:36:36 +0000

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

    Move function list above anaphoric function description.
---
 README.md          |   41 ++++++++++++++++++++---------------------
 readme-template.md |   19 +++++++++----------
 2 files changed, 29 insertions(+), 31 deletions(-)

diff --git a/README.md b/README.md
index 2e02855..696ed18 100644
--- a/README.md
+++ b/README.md
@@ -8,6 +8,26 @@ We're looking to Clojure for naming and signatures.
 
 This is so much a work in progress that you should definitely not be using it 
yet.
 
+## Functions
+
+```cl
+!map (fn list)
+!reduce-from (fn initial-value list)
+!reduce (fn list)
+!filter (fn list)
+!remove (fn list)
+!concat (&rest lists)
+!mapcat (fn list)
+!partial (fn &rest args)
+!difference (list list2)
+!intersection (list list2)
+!uniq (list)
+!contains? (list element)
+```
+
+There are also anaphoric versions of these functions where that makes sense,
+prefixed with two bangs instead of one.
+
 ## Anaphoric functions
 
 While `!filter` takes a function to filter the list by, you can also use the
@@ -30,27 +50,6 @@ of course the original can also be written like
 
 which demonstrates the usefulness of both versions.
 
-## Available functions
-
-```cl
-!map (fn list)
-!reduce-from (fn initial-value list)
-!reduce (fn list)
-!filter (fn list)
-!remove (fn list)
-!concat (&rest lists)
-!mapcat (fn list)
-!partial (fn &rest args)
-!difference (list list2)
-!intersection (list list2)
-!uniq (list)
-!contains? (list element)
-```
-
-There are also anaphoric versions of these
-functions where that makes sense, prefixed with two bangs
-instead of one.
-
 ## Documentation and examples
 
 ### !map `(fn list)`
diff --git a/readme-template.md b/readme-template.md
index 836a22b..aa7f6bc 100644
--- a/readme-template.md
+++ b/readme-template.md
@@ -8,6 +8,15 @@ We're looking to Clojure for naming and signatures.
 
 This is so much a work in progress that you should definitely not be using it 
yet.
 
+## Functions
+
+```cl
+[[ function-list ]]
+```
+
+There are also anaphoric versions of these functions where that makes sense,
+prefixed with two bangs instead of one.
+
 ## Anaphoric functions
 
 While `!filter` takes a function to filter the list by, you can also use the
@@ -30,16 +39,6 @@ of course the original can also be written like
 
 which demonstrates the usefulness of both versions.
 
-## Available functions
-
-```cl
-[[ function-list ]]
-```
-
-There are also anaphoric versions of these
-functions where that makes sense, prefixed with two bangs
-instead of one.
-
 ## Documentation and examples
 
 [[ function-docs ]]



reply via email to

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