hy/hy/extra/anaphoric.hy

143 lines
4.2 KiB
Hy
Raw Normal View History

;;; Hy anaphoric macros
2018-01-01 16:38:33 +01:00
;; Copyright 2018 the authors.
;; This file is part of Hy, which is free software licensed under the Expat
;; license. See the LICENSE.
;;; These macros make writing functional programs more concise
2015-06-17 00:11:55 +02:00
(defmacro ap-if [test-form then-form &optional else-form]
2017-02-04 02:03:06 +01:00
`(do
2017-10-26 20:53:08 +02:00
(setv it ~test-form)
(if it ~then-form ~else-form)))
2013-12-25 18:11:25 +01:00
(defmacro ap-each [lst &rest body]
2013-11-30 01:59:20 +01:00
"Evaluate the body form for each element in the list."
`(for [it ~lst] ~@body))
2013-11-30 01:59:20 +01:00
(defmacro ap-each-while [lst form &rest body]
2015-12-08 14:43:47 +01:00
"Evaluate the body form for each element in the list while the
2013-11-30 01:59:20 +01:00
predicate form evaluates to True."
2017-02-04 02:03:06 +01:00
(setv p (gensym))
`(do
(defn ~p [it] ~form)
(for [it ~lst]
2017-02-04 02:03:06 +01:00
(if (~p it)
2017-10-26 20:53:08 +02:00
~@body
(break)))))
(defmacro ap-map [form lst]
2013-11-30 01:59:20 +01:00
"Yield elements evaluated in the form for each element in the list."
2017-02-04 02:03:06 +01:00
(setv v (gensym 'v) f (gensym 'f))
`((fn []
2017-10-26 20:53:08 +02:00
(defn ~f [it] ~form)
(for [~v ~lst]
(yield (~f ~v))))))
(defmacro ap-map-when [predfn rep lst]
2013-11-30 01:59:20 +01:00
"Yield elements evaluated for each element in the list when the
predicate function returns True."
2017-02-04 02:03:06 +01:00
(setv f (gensym))
`((fn []
2017-10-26 20:53:08 +02:00
(defn ~f [it] ~rep)
(for [it ~lst]
(if (~predfn it)
(yield (~f it))
(yield it))))))
(defmacro ap-filter [form lst]
2013-11-30 01:59:20 +01:00
"Yield elements returned when the predicate form evaluates to True."
2017-02-04 02:03:06 +01:00
(setv pred (gensym))
`((fn []
2017-10-26 20:53:08 +02:00
(defn ~pred [it] ~form)
(for [val ~lst]
(if (~pred val)
(yield val))))))
(defmacro ap-reject [form lst]
"Yield elements returned when the predicate form evaluates to False"
`(ap-filter (not ~form) ~lst))
(defmacro ap-dotimes [n &rest body]
"Execute body for side effects `n' times, with it bound from 0 to n-1"
(unless (numeric? n)
2017-02-04 02:03:06 +01:00
(raise (TypeError (.format "{!r} is not a number" n))))
`(ap-each (range ~n) ~@body))
(defmacro ap-first [predfn lst]
"Yield the first element that passes `predfn`"
(with-gensyms [n]
2017-02-04 02:03:06 +01:00
`(do
(setv ~n None)
(ap-each ~lst (when ~predfn (setv ~n it) (break)))
~n)))
(defmacro ap-last [predfn lst]
"Yield the last element that passes `predfn`"
(with-gensyms [n]
2017-02-04 02:03:06 +01:00
`(do
(setv ~n None)
(ap-each ~lst (none? ~n)
(when ~predfn
(setv ~n it)))
~n)))
(defmacro ap-reduce [form lst &optional [initial-value None]]
"Anaphoric form of reduce, `acc' and `it' can be used for a form"
2017-02-04 02:03:06 +01:00
`(do
2017-10-26 20:53:08 +02:00
(setv acc ~(if (none? initial-value) `(get ~lst 0) initial-value))
(ap-each ~(if (none? initial-value) `(cut ~lst 1) lst)
(setv acc ~form))
acc))
(defmacro ap-pipe [var &rest forms]
"Pushes a value through several forms.
(Anaphoric version of -> and ->>)"
(if (empty? forms) var
2017-02-04 02:03:06 +01:00
`(ap-pipe (do (setv it ~var) ~(first forms)) ~@(rest forms))))
(defmacro ap-compose [&rest forms]
"Returns a function which is the composition of several forms."
`(fn [var] (ap-pipe var ~@forms)))
2017-10-26 04:46:38 +02:00
(deftag % [expr]
"Makes an expression into a function with an implicit `%` parameter list.
2017-10-23 05:36:30 +02:00
2017-10-26 04:46:38 +02:00
A `%i` symbol designates the (1-based) ith parameter (such as `%3`).
Only the maximum `%i` determines the number of `%i` parameters--the
others need not appear in the expression.
2017-10-23 05:36:30 +02:00
`%*` and `%**` name the `&rest` and `&kwargs` parameters, respectively.
2017-10-26 04:46:38 +02:00
Nesting of `#%` forms is not recommended."
(setv %symbols (set-comp a
[a (flatten [expr])]
(and (symbol? a)
(.startswith a '%))))
`(fn [;; generate all %i symbols up to the maximum found in expr
~@(genexpr (HySymbol (+ "%" (str i)))
[i (range 1 (-> (list-comp (int (cut a 1))
[a %symbols]
(.isdigit (cut a 1)))
(or (, 0))
max
inc))])
;; generate the &rest parameter only if '%* is present in expr
~@(if (in '%* %symbols)
2017-10-23 05:36:30 +02:00
'(&rest %*))
2017-10-26 04:46:38 +02:00
;; similarly for &kwargs and %**
~@(if (in '%** %symbols)
2017-10-23 05:36:30 +02:00
'(&kwargs %**))]
2017-10-26 04:46:38 +02:00
~expr))