Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/j5ik2o/rust-fp
The Library for Functional Programming in Rust
https://github.com/j5ik2o/rust-fp
functional-programming rust
Last synced: about 2 months ago
JSON representation
The Library for Functional Programming in Rust
- Host: GitHub
- URL: https://github.com/j5ik2o/rust-fp
- Owner: j5ik2o
- License: other
- Created: 2020-02-02T18:51:29.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T05:52:18.000Z (about 1 year ago)
- Last Synced: 2024-05-02T01:17:15.858Z (8 months ago)
- Topics: functional-programming, rust
- Language: Rust
- Size: 48.8 KB
- Stars: 12
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# rust-fp
rust-fp is a library for functional programming in Rust.
## Install
```toml
[dependencies]
rust-fp-categories = "0.0.1"
rust-fp-pfds = "0.0.1"
```## Type-classes for categories
|type-class|j5ik2o/rust-fp|[JasonShin/fp-core.rs](https://github.com/JasonShin/fp-core.rs)|[kitfre/Kinder](https://github.com/kitfre/Kinder)|[14427/hkt.rs](https://gist.github.com/14427/af90a21b917d2892eace)|[aoprisan/func](https://github.com/aoprisan/func)|
|:-----------------------|:------|:------|:------|:------|:------|
|Functor |✓|✓|✓|✓|-|
|Pure |✓|✓|-|-|-|
|Apply |✓|✓|-|-|-|
|Applicativie(Pure+Apply)|✓|✓|✓|✓|-|
|Bind |✓|✓|-|-|-|
|Monad(Applicative+Bind) |✓|✓|✓|✓|-|
|Empty |✓|✓|-|-|-|
|Semigroup |✓|✓|-|-|-|
|Monoid(Empty+Semigroup) |✓|✓|✓|✓|-|
|Foldable |✓|✓|✓|-|-|
|Show |-|-|-|-|✓|
|HList |-|-|-|-|✓|
|TailRec |-|-|-|-|✓|## Purely functional data structures
|data name|j5ik2o/rust-fp|[aoprisan/func](https://github.com/aoprisan/func)|
|:---------|:------|:------|
|Stack|✓|-|
|Set|✓|-|
|Lazy|-|✓|
|IO|-|✓|
|Free|-|✓|
|Computation|-|✓|