aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 9dadc45cd77ab66b0f19d267cada8f2e2909c724 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# algebraic-structs

Provides useful algebraic structures for programming using parameterized module.

## Install

Run `chicken-install` in the project's root directory.

```
$ cd algebraic-structs
$ chicken-install
```

## Supported Features

- Monoid
  - list
  - number (sum)
  - number (product)
- Foldable
  - list
  - vector
- Functor
  - list
- Applicative
  - list
- Monad
  - list
- Alternative
  - list

## Example

- Monad
  - [optonal](./examples/optional.scm)
  - [state](./examples/optional.scm)