hy/hy/extra/anaphoric.hy

137 lines
4.0 KiB
Hy
Raw Normal View History

;;; Hy anaphoric macros
;; Copyright 2017 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-23 03:53:05 +02:00
(deftag % [body]
"Returns a function with parameters implicitly determined by the presence in
2017-10-23 03:53:05 +02:00
the body of %i parameters. A %i symbol designates the ith parameter
(1-based, e.g. %1, %2, %3, etc.), or all remaining parameters for %&.
Nesting of #%() forms is not recommended."
(setv flatbody (flatten body))
2017-10-23 03:53:05 +02:00
`(fn [;; generate all %i symbols up to the maximum found in body
~@(genexpr (HySymbol (+ "%"
2017-10-26 20:53:08 +02:00
(str i)))
[i (range 1
2017-10-23 03:53:05 +02:00
;; find the maximum %i
2017-10-26 20:53:08 +02:00
(inc (max (+ (list-comp (int (cut a 1))
[a flatbody]
(and (symbol? a)
2017-10-23 03:53:05 +02:00
(.startswith a '%)
2017-10-26 20:53:08 +02:00
(.isdigit (cut a 1))))
[0]))))])
2017-10-23 03:53:05 +02:00
;; generate the &rest parameter only if '%& is present in body
~@(if (in '%& flatbody)
'(&rest %&)
2017-10-26 20:53:08 +02:00
'())]
(~@body)))