#functional-programming #functional #reader #state

bo

Bo is a library for functional programming in rust

Show the crate…

1 unstable release

Uses old Rust 2015

0.1.4 Mar 16, 2021

#90 in #functional-programming

MIT/Apache

26KB
662 lines

Bo is a library for functional programming in Rust.

It provides as-pure-as-useful functional data structures to improve the functional programming experience with Rust. It implements a set of instances of the foundational functional type classes (e.g. Functor, Monad) for a large number of data structures.

The implementation tries to be as close to the pure functional implementations of these data structures, but also tries to remain practical given the specifics of the Rust programming language.

Status

This is currently a means for myself to explore functional programming in general and also to understand what is possible within the inherent limits of Rust. If the overall approach turns out to be possible without negating Rust's design principles and performance goals the plan is definitely to move this to production grade functional library.

You can track my plans and progress here.

Data Structure Status
Lense First working version
Applicative Early experiments
ValidationNel Early experiments
State Monad Initial attempt, working but needs refactoring on lifetimes.
Reader Monad Working version, needs cleanup and refactoring
Writer Monad Planned
ReaderT Planned for Option, Tokio futures, other type classes usually needed with Web service development.
Free Monad Tried this, but not sure if possible in Rust in a useful way. I also do not really grok Free - giving this up for now. Help welcome..
... Please open issues for anything you'd like to see here

Like-Minded Crates

Functional Programming in Rust Discussions

Discussions on Impl-Trait

Discussions on Higher Kinded Types

No runtime deps