An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# compose-app [![Build Status](https://travis-ci.org/jackfirth/compose-app.svg?branch=master)](https://travis-ci.org/jackfirth/compose-app) [![codecov](https://codecov.io/gh/jackfirth/compose-app/branch/master/graph/badge.svg)](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.