
Template-Oriented-Programming to Ship Faster, Part-1
over 5 years ago
Learn about the magic of Ad-hoc polymorphism using Arrow typeclasses with simple examples.
Read
Template-Oriented-Programming to Ship Faster
over 5 years ago
With a POC using Spring-fu + Kotlin + Arrow, let's Convert Monomorphic code (for common use-cases such as Auth, Validation) to Polymorphic reusable templates, to be reused among heterogeneous services built on different tech-stacks (blocking/non-blocking). This helps accelerate feature development.
ReadExplaining the Arrow Android sample
over 5 years ago
Arrow is an exciting development for Kotlin developers interested in functional programming and, more broadly, pushing the limits of the Kotlin compiler.
Read
IO integration with kotlinx.coroutines
over 5 years ago
This article showcases the brand new Arrow integration module for KotlinX Coroutines included in the Arrow 0.10.5 release.
Read
FP with Kotlin/Arrow: Monad Comprehensions & Parallel Processing
over 5 years ago
Arrow has multiple libraries available for functional programming. In this talk we'll focus on Arrow FX and learn how to handle IO in a functional way with an introduction to monadic composition. Then we'll examine how to compose monads in a cleaner fashion with Arrow FX's monad comprehensions. Finally, we'll take a look at how to parallelize IO monads with parallel map strategies.
Read
What could possibly go wrong? - A safer programming with Arrow
over 5 years ago
Your Kotlin app grabs data from an API, transforms it and saves the processed data in a database. However, there are so many things that could go wrong at runtime treat your impure functions as computations with context, pass them around just like other values, and make the necessary unsafe invocation from a single point of your app, your main function.
ReadKotlin Functional Programming: Cleaner Composition with Monad Comprehensions in Arrow Fx
almost 6 years ago
Learn how to write cleaner monadic composition in Kotlin with Arrow’s monad comprehensions, available in Arrow FX.
ReadKotlin Functional Programming: Monads & Composition with Arrow Fx
almost 6 years ago
Arrow is a library created by folks over at a company called 47 degrees . In a nutshell, Arrow brings a slew of functional programming features to Kotlin. It is heavily inspired by Scala and Haskell, and emphasizes a lot of the concepts that those languages started
Read