monadify 0.2.0

A library for functional programming abstractions in Rust, focusing on Monads, Functors, Applicatives, and related concepts.
Documentation
1
2
3
4
5
6
7
8
// src/kind_based/mod.rs

// This module houses the Kind (Higher-Kinded Types) infrastructure
// for the monadify library.
// It includes the core `Kind` trait and specific marker types defined in `kind.rs`.

// The Kind system is the default, so this module and its contents are always public.
pub mod kind;