Tutorials
End-to-end examples — from `Result` error handling to async pipelines.
Tutorials are recipe-style walkthroughs. Each one starts from a concrete problem and ends with running code.
- tutorials · May 15, 2026
Error handling with Result
Replace try/catch ladders with declarative Result chains.
- tutorials · May 15, 2026
Async pipelines with CompletableFutureQueue
Chain asynchronous transformations declaratively.
- tutorials · May 15, 2026
Pattern matching with Case
Replace verbose if/else cascades with Case.
- tutorials · May 15, 2026
Memoizing expensive computations
Turn slow pure functions into fast ones with one line of code.
- tutorials · May 15, 2026
Working with checked exceptions
Lift legacy throwing code into Result chains.