Merge pull request #1444 from gilch/xi-tag
change xi macro to #% tag macro
This commit is contained in:
commit
fac87c99d0
2
NEWS
2
NEWS
@ -22,6 +22,8 @@ Changes from 0.13.0
|
|||||||
* support EDN `#_` syntax to discard the next term
|
* support EDN `#_` syntax to discard the next term
|
||||||
* `return` has been implemented as a special form
|
* `return` has been implemented as a special form
|
||||||
* `while` loops may now contain an `else` clause, like `for` loops
|
* `while` loops may now contain an `else` clause, like `for` loops
|
||||||
|
* `xi` from `hy.extra.anaphoric` is now the `#%` tag macro
|
||||||
|
* `#%` works on any expression and has a new `&kwargs` parameter `%**`
|
||||||
|
|
||||||
[ Bug Fixes ]
|
[ Bug Fixes ]
|
||||||
* Numeric literals are no longer parsed as symbols when followed by a dot
|
* Numeric literals are no longer parsed as symbols when followed by a dot
|
||||||
|
@ -229,21 +229,37 @@ Returns a function which applies several forms in series from left to right. The
|
|||||||
=> (op 2)
|
=> (op 2)
|
||||||
9
|
9
|
||||||
|
|
||||||
.. _xi
|
.. _#%
|
||||||
|
|
||||||
xi
|
#%
|
||||||
==
|
==
|
||||||
|
|
||||||
Usage ``(xi body ...)``
|
Usage ``#% expr``
|
||||||
|
|
||||||
Returns a function with parameters implicitly determined by the presence in the body of xi parameters. An xi symbol designates the ith parameter (1-based, e.g. x1, x2, x3, etc.), or all remaining parameters for xi itself. This is not a replacement for fn. The xi forms cannot be nested.
|
Makes an expression into a function with an implicit ``%`` parameter list.
|
||||||
|
|
||||||
This is similar to Clojure's anonymous function literals (``#()``).
|
A ``%i`` symbol designates the (1-based) *i* th parameter (such as ``%3``).
|
||||||
|
Only the maximum ``%i`` determines the number of ``%i`` parameters--the
|
||||||
|
others need not appear in the expression.
|
||||||
|
``%*`` and ``%**`` name the ``&rest`` and ``&kwargs`` parameters, respectively.
|
||||||
|
|
||||||
.. code-block:: hy
|
.. code-block:: hy
|
||||||
|
|
||||||
=> ((xi identity [x1 x5 [x2 x3] xi x4]) 1 2 3 4 5 6 7 8)
|
=> (#%[%1 %6 42 [%2 %3] %* %4] 1 2 3 4 555 6 7 8)
|
||||||
[1, 5, [2, 3,] (6, 7, 8), 4]
|
[1, 6, 42, [2, 3], (7, 8), 4]
|
||||||
=> (def add-10 (xi + 10 x1))
|
=> (#% %** :foo 2)
|
||||||
=> (add-10 6)
|
{"foo": 2}
|
||||||
16
|
|
||||||
|
When used on an s-expression,
|
||||||
|
``#%`` is similar to Clojure's anonymous function literals--``#()``.
|
||||||
|
|
||||||
|
.. code-block:: hy
|
||||||
|
|
||||||
|
=> (setv add-10 #%(+ 10 %1))
|
||||||
|
=> (add-10 6)
|
||||||
|
16
|
||||||
|
|
||||||
|
``#%`` determines the parameter list by the presence of a ``%*`` or ``%**``
|
||||||
|
symbol and by the maximum ``%i`` symbol found *anywhere* in the expression,
|
||||||
|
so nesting of ``#%`` forms is not recommended.
|
||||||
|
|
||||||
|
@ -5,11 +5,10 @@
|
|||||||
|
|
||||||
;;; These macros make writing functional programs more concise
|
;;; These macros make writing functional programs more concise
|
||||||
|
|
||||||
|
|
||||||
(defmacro ap-if [test-form then-form &optional else-form]
|
(defmacro ap-if [test-form then-form &optional else-form]
|
||||||
`(do
|
`(do
|
||||||
(setv it ~test-form)
|
(setv it ~test-form)
|
||||||
(if it ~then-form ~else-form)))
|
(if it ~then-form ~else-form)))
|
||||||
|
|
||||||
|
|
||||||
(defmacro ap-each [lst &rest body]
|
(defmacro ap-each [lst &rest body]
|
||||||
@ -25,17 +24,17 @@
|
|||||||
(defn ~p [it] ~form)
|
(defn ~p [it] ~form)
|
||||||
(for [it ~lst]
|
(for [it ~lst]
|
||||||
(if (~p it)
|
(if (~p it)
|
||||||
~@body
|
~@body
|
||||||
(break)))))
|
(break)))))
|
||||||
|
|
||||||
|
|
||||||
(defmacro ap-map [form lst]
|
(defmacro ap-map [form lst]
|
||||||
"Yield elements evaluated in the form for each element in the list."
|
"Yield elements evaluated in the form for each element in the list."
|
||||||
(setv v (gensym 'v) f (gensym 'f))
|
(setv v (gensym 'v) f (gensym 'f))
|
||||||
`((fn []
|
`((fn []
|
||||||
(defn ~f [it] ~form)
|
(defn ~f [it] ~form)
|
||||||
(for [~v ~lst]
|
(for [~v ~lst]
|
||||||
(yield (~f ~v))))))
|
(yield (~f ~v))))))
|
||||||
|
|
||||||
|
|
||||||
(defmacro ap-map-when [predfn rep lst]
|
(defmacro ap-map-when [predfn rep lst]
|
||||||
@ -43,21 +42,21 @@
|
|||||||
predicate function returns True."
|
predicate function returns True."
|
||||||
(setv f (gensym))
|
(setv f (gensym))
|
||||||
`((fn []
|
`((fn []
|
||||||
(defn ~f [it] ~rep)
|
(defn ~f [it] ~rep)
|
||||||
(for [it ~lst]
|
(for [it ~lst]
|
||||||
(if (~predfn it)
|
(if (~predfn it)
|
||||||
(yield (~f it))
|
(yield (~f it))
|
||||||
(yield it))))))
|
(yield it))))))
|
||||||
|
|
||||||
|
|
||||||
(defmacro ap-filter [form lst]
|
(defmacro ap-filter [form lst]
|
||||||
"Yield elements returned when the predicate form evaluates to True."
|
"Yield elements returned when the predicate form evaluates to True."
|
||||||
(setv pred (gensym))
|
(setv pred (gensym))
|
||||||
`((fn []
|
`((fn []
|
||||||
(defn ~pred [it] ~form)
|
(defn ~pred [it] ~form)
|
||||||
(for [val ~lst]
|
(for [val ~lst]
|
||||||
(if (~pred val)
|
(if (~pred val)
|
||||||
(yield val))))))
|
(yield val))))))
|
||||||
|
|
||||||
|
|
||||||
(defmacro ap-reject [form lst]
|
(defmacro ap-reject [form lst]
|
||||||
@ -95,10 +94,10 @@
|
|||||||
(defmacro ap-reduce [form lst &optional [initial-value None]]
|
(defmacro ap-reduce [form lst &optional [initial-value None]]
|
||||||
"Anaphoric form of reduce, `acc' and `it' can be used for a form"
|
"Anaphoric form of reduce, `acc' and `it' can be used for a form"
|
||||||
`(do
|
`(do
|
||||||
(setv acc ~(if (none? initial-value) `(get ~lst 0) initial-value))
|
(setv acc ~(if (none? initial-value) `(get ~lst 0) initial-value))
|
||||||
(ap-each ~(if (none? initial-value) `(cut ~lst 1) lst)
|
(ap-each ~(if (none? initial-value) `(cut ~lst 1) lst)
|
||||||
(setv acc ~form))
|
(setv acc ~form))
|
||||||
acc))
|
acc))
|
||||||
|
|
||||||
|
|
||||||
(defmacro ap-pipe [var &rest forms]
|
(defmacro ap-pipe [var &rest forms]
|
||||||
@ -112,26 +111,32 @@
|
|||||||
"Returns a function which is the composition of several forms."
|
"Returns a function which is the composition of several forms."
|
||||||
`(fn [var] (ap-pipe var ~@forms)))
|
`(fn [var] (ap-pipe var ~@forms)))
|
||||||
|
|
||||||
(defmacro xi [&rest body]
|
(deftag % [expr]
|
||||||
"Returns a function with parameters implicitly determined by the presence in
|
"Makes an expression into a function with an implicit `%` parameter list.
|
||||||
the body of xi parameters. An xi symbol designates the ith parameter
|
|
||||||
(1-based, e.g. x1, x2, x3, etc.), or all remaining parameters for xi itself.
|
A `%i` symbol designates the (1-based) ith parameter (such as `%3`).
|
||||||
This is not a replacement for fn. The xi forms cannot be nested. "
|
Only the maximum `%i` determines the number of `%i` parameters--the
|
||||||
(setv flatbody (flatten body))
|
others need not appear in the expression.
|
||||||
`(fn [;; generate all xi symbols up to the maximum found in body
|
`%*` and `%**` name the `&rest` and `&kwargs` parameters, respectively.
|
||||||
~@(genexpr (HySymbol (+ "x"
|
|
||||||
(str i)))
|
Nesting of `#%` forms is not recommended."
|
||||||
[i (range 1
|
(setv %symbols (set-comp a
|
||||||
;; find the maximum xi
|
[a (flatten [expr])]
|
||||||
(inc (max (+ (list-comp (int (cut a 1))
|
(and (symbol? a)
|
||||||
[a flatbody]
|
(.startswith a '%))))
|
||||||
(and (symbol? a)
|
`(fn [;; generate all %i symbols up to the maximum found in expr
|
||||||
(.startswith a 'x)
|
~@(genexpr (HySymbol (+ "%" (str i)))
|
||||||
(.isdigit (cut a 1))))
|
[i (range 1 (-> (list-comp (int (cut a 1))
|
||||||
[0]))))])
|
[a %symbols]
|
||||||
;; generate the &rest parameter only if 'xi is present in body
|
(.isdigit (cut a 1)))
|
||||||
~@(if (in 'xi flatbody)
|
(or (, 0))
|
||||||
'(&rest xi)
|
max
|
||||||
'())]
|
inc))])
|
||||||
(~@body)))
|
;; generate the &rest parameter only if '%* is present in expr
|
||||||
|
~@(if (in '%* %symbols)
|
||||||
|
'(&rest %*))
|
||||||
|
;; similarly for &kwargs and %**
|
||||||
|
~@(if (in '%** %symbols)
|
||||||
|
'(&kwargs %**))]
|
||||||
|
~expr))
|
||||||
|
|
||||||
|
@ -65,9 +65,9 @@
|
|||||||
(defn test-ap-dotimes []
|
(defn test-ap-dotimes []
|
||||||
"NATIVE: testing anaphoric dotimes"
|
"NATIVE: testing anaphoric dotimes"
|
||||||
(assert-equal (do (setv n []) (ap-dotimes 3 (.append n 3)) n)
|
(assert-equal (do (setv n []) (ap-dotimes 3 (.append n 3)) n)
|
||||||
[3 3 3])
|
[3 3 3])
|
||||||
(assert-equal (do (setv n []) (ap-dotimes 3 (.append n it)) n)
|
(assert-equal (do (setv n []) (ap-dotimes 3 (.append n it)) n)
|
||||||
[0 1 2]))
|
[0 1 2]))
|
||||||
|
|
||||||
(defn test-ap-first []
|
(defn test-ap-first []
|
||||||
"NATIVE: testing anaphoric first"
|
"NATIVE: testing anaphoric first"
|
||||||
@ -86,7 +86,7 @@
|
|||||||
(assert-equal (ap-reduce (* acc it) [1 2 3]) 6)
|
(assert-equal (ap-reduce (* acc it) [1 2 3]) 6)
|
||||||
(assert-equal (ap-reduce (* acc it) [1 2 3] 6) 36)
|
(assert-equal (ap-reduce (* acc it) [1 2 3] 6) 36)
|
||||||
(assert-equal (ap-reduce (+ acc " on " it) ["Hy" "meth"])
|
(assert-equal (ap-reduce (+ acc " on " it) ["Hy" "meth"])
|
||||||
"Hy on meth")
|
"Hy on meth")
|
||||||
(assert-equal (ap-reduce (+ acc it) [] 1) 1))
|
(assert-equal (ap-reduce (+ acc it) [] 1) 1))
|
||||||
|
|
||||||
(defn test-ap-pipe []
|
(defn test-ap-pipe []
|
||||||
@ -99,28 +99,46 @@
|
|||||||
(assert-equal ((ap-compose (+ it 1) (* it 3)) 2) 9)
|
(assert-equal ((ap-compose (+ it 1) (* it 3)) 2) 9)
|
||||||
(assert-equal ((ap-compose (list (rest it)) (len it)) [4 5 6 7]) 3))
|
(assert-equal ((ap-compose (list (rest it)) (len it)) [4 5 6 7]) 3))
|
||||||
|
|
||||||
(defn test-xi []
|
(defn test-tag-fn []
|
||||||
"NATIVE: testing xi forms"
|
"NATIVE: testing #%() forms"
|
||||||
;; test ordering
|
;; test ordering
|
||||||
(assert-equal ((xi / x1 x2) 2 4) 0.5)
|
(assert-equal (#%(/ %1 %2) 2 4) 0.5)
|
||||||
(assert-equal ((xi / x2 x1) 2 4) 2)
|
(assert-equal (#%(/ %2 %1) 2 4) 2)
|
||||||
(assert-equal ((xi identity (, x5 x4 x3 x2 x1)) 1 2 3 4 5) (, 5 4 3 2 1))
|
(assert-equal (#%(identity (, %5 %4 %3 %2 %1)) 1 2 3 4 5) (, 5 4 3 2 1))
|
||||||
(assert-equal ((xi identity (, x1 x2 x3 x4 x5)) 1 2 3 4 5) (, 1 2 3 4 5))
|
(assert-equal (#%(identity (, %1 %2 %3 %4 %5)) 1 2 3 4 5) (, 1 2 3 4 5))
|
||||||
(assert-equal ((xi identity (, x1 x5 x2 x3 x4)) 1 2 3 4 5) (, 1 5 2 3 4))
|
(assert-equal (#%(identity (, %1 %5 %2 %3 %4)) 1 2 3 4 5) (, 1 5 2 3 4))
|
||||||
;; test &rest
|
;; test &rest
|
||||||
(assert-equal ((xi sum xi) 1 2 3) 6)
|
(assert-equal (#%(sum %*) 1 2 3) 6)
|
||||||
(assert-equal ((xi identity (, x1 xi)) 10 1 2 3) (, 10 (, 1 2 3)))
|
(assert-equal (#%(identity (, %1 %*)) 10 1 2 3) (, 10 (, 1 2 3)))
|
||||||
;; no parameters
|
;; no parameters
|
||||||
(assert-equal ((xi list)) [])
|
(assert-equal (#%(list)) [])
|
||||||
(assert-equal ((xi identity "Hy!")) "Hy!")
|
(assert-equal (#%(identity "Hy!")) "Hy!")
|
||||||
(assert-equal ((xi identity "xi")) "xi")
|
(assert-equal (#%(identity "%*")) "%*")
|
||||||
(assert-equal ((xi + "Hy " "world!")) "Hy world!")
|
(assert-equal (#%(+ "Hy " "world!")) "Hy world!")
|
||||||
;; test skipped parameters
|
;; test skipped parameters
|
||||||
(assert-equal ((xi identity [x3 x1]) 1 2 3) [3 1])
|
(assert-equal (#%(identity [%3 %1]) 1 2 3) [3 1])
|
||||||
;; test nesting
|
;; test nesting
|
||||||
(assert-equal ((xi identity [x1 (, x2 [x3] "Hy" [xi])]) 1 2 3 4 5)
|
(assert-equal (#%(identity [%1 (, %2 [%3] "Hy" [%*])]) 1 2 3 4 5)
|
||||||
[1 (, 2 [3] "Hy" [(, 4 5)])])
|
[1 (, 2 [3] "Hy" [(, 4 5)])])
|
||||||
;; test arg as function
|
;; test arg as function
|
||||||
(assert-equal ((xi x1 2 4) +) 6)
|
(assert-equal (#%(%1 2 4) +) 6)
|
||||||
(assert-equal ((xi x1 2 4) -) -2)
|
(assert-equal (#%(%1 2 4) -) -2)
|
||||||
(assert-equal ((xi x1 2 4) /) 0.5))
|
(assert-equal (#%(%1 2 4) /) 0.5)
|
||||||
|
;; test &rest &kwargs
|
||||||
|
(assert-equal (#%(, %* %**) 1 2 :a 'b)
|
||||||
|
(, (, 1 2)
|
||||||
|
(dict :a 'b)))
|
||||||
|
;; test other expression types
|
||||||
|
(assert-equal (#% %* 1 2 3)
|
||||||
|
(, 1 2 3))
|
||||||
|
(assert-equal (#% %** :foo 2)
|
||||||
|
(dict :foo 2))
|
||||||
|
(assert-equal (#%[%3 %2 %1] 1 2 3)
|
||||||
|
[3 2 1])
|
||||||
|
(assert-equal (#%{%1 %2} 10 100)
|
||||||
|
{10 100})
|
||||||
|
(assert-equal (#% #{%3 %2 %1} 1 3 2)
|
||||||
|
#{3 1 2}) ; sets are not ordered.
|
||||||
|
(assert-equal (#% "%1")
|
||||||
|
"%1"))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user