1 个仓库
Curated articles and code examples covering combinators, tagless final, smart constructors, and property-based testing.
Distinct from Functional Programming Patterns: Distinct from Functional Programming Patterns: focuses on advanced, library-specific patterns rather than general functional programming concepts.
Explore 1 awesome GitHub repository matching education & learning resources · Advanced Pattern Explorations. Refine with filters or upvote what's useful.
fp-ts is a TypeScript library that brings pure functional programming patterns to the language through algebraic data types, type class abstractions, and composable combinators. It provides foundational data types like Option for optional values, Either for typed error handling, and Task for lazy asynchronous computations, all designed to make invalid states unrepresentable and side effects explicit. The library is built on category theory concepts, offering type classes such as Functor, Applicative, Monad, Semigroup, and Monoid with lawful instances for common data structures. The library di
Links to community articles and examples demonstrating advanced functional patterns using the library.