Foldable answers what a structure means when combined; Traversable answers what happens when effects run across it. Together they show how structure, effects, and abstraction interact.
This post introduces the fundamental algebraic structures of Semigroups and Monoids, demonstrating how the simple power of associative combination enables complex patterns like Applicative error accumulation and foldMap while emphasizing the importance of only ’earning’ an identity element when it truly exists in the domain.
This post explores the hierarchy of functional abstractions by reframing Functors, Applicatives, and Monads as a ladder of expressive power, moving from simple context-aware mapping to independent effect composition and eventually the sequential dependency of the Monad.
This post demystifies Haskell monads by reframing them as a familiar design pattern for managing context, transitioning from practical code examples in multiple languages to the underlying category theory of monoids over endofunctors.