This repository has been archived on 2025-11-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Aryadev Chavali b29855047b Implement $ operator, second class version of the applicative operator
The `$` operator takes a sequence of FORMS and returns a unary
function which applies the input through that sequence via the `->>`
operator.

For example, consider the predicate "not null".  `null` is built into
Common Lisp but "not null" requires writing a
function (lambda (x) (not (null x))).  Now, using this operator, you
can write ($ not null) which returns the same lambda as above while
being more concise.
2025-02-11 00:40:19 +00:00
2025-02-11 00:40:19 +00:00
2025-02-11 00:40:19 +00:00
2025-02-11 00:40:19 +00:00
2025-02-11 00:40:19 +00:00
Description
No description provided
GPL-2.0 110 KiB
Languages
Common Lisp 99.6%
Shell 0.4%