https://github.com/jackfirth/compose-app
Racket syntax for Haskell-style function composition
https://github.com/jackfirth/compose-app
Last synced: 3 months ago
JSON representation
Racket syntax for Haskell-style function composition
- Host: GitHub
- URL: https://github.com/jackfirth/compose-app
- Owner: jackfirth
- License: apache-2.0
- Created: 2016-12-07T00:42:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-02-18T00:26:53.000Z (4 months ago)
- Last Synced: 2025-03-24T05:17:14.448Z (3 months ago)
- Language: Racket
- Homepage:
- Size: 18.6 KB
- Stars: 8
- Watchers: 3
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# compose-app [](https://travis-ci.org/jackfirth/compose-app) [](https://codecov.io/gh/jackfirth/compose-app)
A Racket `#%app` macro that changes `(a .. b .. c)` into `(lambda (v) (a (b (c v))))` for easier function composition. Integrates with `fancy-app` to change `(a .. map b _ .. c)` into `(a .. (lambda (v) (map b v) .. c)`. See [the documentation](http://docs.racket-lang.org/compose-app/) for details.