monadify 0.1.1

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

// This module will house the HKT (Higher-Kinded Types) infrastructure.
// It includes the core `Kind` trait and specific marker types.

// The HKT system is now default, so the `kind` module is always public.
pub mod kind;