Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jamesrweb/elm-aviary
An elm implementation of the birds from combinatory logic. Inspired by the Haskell Data.Aviary.Birds package.
https://github.com/jamesrweb/elm-aviary
aviary combinators-calculus combinatory-logic elm elm-package functional-compositons
Last synced: about 1 month ago
JSON representation
An elm implementation of the birds from combinatory logic. Inspired by the Haskell Data.Aviary.Birds package.
- Host: GitHub
- URL: https://github.com/jamesrweb/elm-aviary
- Owner: jamesrweb
- License: bsd-3-clause
- Created: 2022-11-09T10:06:42.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-20T08:03:34.000Z (about 2 years ago)
- Last Synced: 2024-12-09T12:04:14.522Z (about 1 month ago)
- Topics: aviary, combinators-calculus, combinatory-logic, elm, elm-package, functional-compositons
- Language: Elm
- Homepage: https://elm.dmy.fr/packages/jamesrweb/elm-aviary/latest/
- Size: 15.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ELM Aviary
An elm implementation of the birds from combinatory logic.
Each bird in the Aviary represents a [function composition pattern](https://en.wikipedia.org/wiki/Function_composition) and each bird is implemented, as far as is possible, using [SKI combinator calculus](https://en.wikipedia.org/wiki/SKI_combinator_calculus) under the hood.
## Installation
```sh
elm install jamesrweb/elm-aviary
```## Usage
To import all birds, add the following at the top of your file:
```elm
import Aviary.Birds exposing (..)
```You can also just import specific birds such as the Kestrel and Psi for example:
```elm
import Aviary.Birds exposing (kestrel, psi)
```## Development
### Formatting
```sh
npx elm-format . --yes
```### Linting
```sh
npx elm-review .
```### Tests
```sh
npx elm-verify-examples -r
```