Crates.io | fmap |
lib.rs | fmap |
version | 0.8.3 |
source | src |
created_at | 2023-06-04 09:57:52.577282 |
updated_at | 2023-06-15 06:30:55.02768 |
description | Functors in Rust |
homepage | |
repository | https://github.com/JanBeh/fmap |
max_upload_size | |
id | 882084 |
size | 61,034 |
This crate provides functors and monads in Rust. The API is designed to
allow additional bounds on inner types, thus allowing implementation of
a common Functor
trait for all collections in
std::collections
,
including those which have an Eq + Hash
or an Ord
bound on their
relevant methods.
Also included in this crate are Functor
and Monad
implementations
for boxed iterators, futures, and functions.