aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: f668c46ca9b25a9940abd22d5874e72fa36b99b0 (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-structures

Provides useful algebraic structures for programming using parameterized module.

## Install

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

```
$ cd algebraic-structures
$ 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)