Skip to main content

articles

47 posts tagged with “articles”

Kotlin Functional Programming: Monads & Composition with Arrow Fx

Kotlin Functional Programming: Monads & Composition with Arrow Fx

undefined

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

Learn more
Kotlin Functional Programming: Parallel Processing The Functional Way with Arrow Fx

Kotlin Functional Programming: Parallel Processing The Functional Way with Arrow Fx

undefined

Learn how to handle parallel processing in Kotlin with Arrow IO monads.

Learn more
Arrow Comonad Approach for GameOfLife with Android Compose

Arrow Comonad Approach for GameOfLife with Android Compose

undefined

The purpose of this article is complement the bow + SwifUi solution for the game of live we can find here https://www.47deg.com/blog/conway-swift/ with the arrow + compose version.

Learn more
Kotlin coroutines with arrow-fx

Kotlin coroutines with arrow-fx

undefined

The purpose of this article is to summarize the approaches from questions at Slack about the usage of Either, Option and other datatypes and to give a tour of arrow-fx usage and APIs.

Learn more
Conway's Game of Life using Kotlin and Arrow

Conway's Game of Life using Kotlin and Arrow

undefined

An article of a series on Functional Programming solutions for the Global Day of Coderetreat challenge. In this case, it shows an approach for it using Kotlin and Functional Programming provided by the Arrow library.

Learn more
Effect polymorphism with Arrow FX

Effect polymorphism with Arrow FX

undefined

Wonder how to handle side effects in a very clean way while abstracting the real effect implementation? #Arrow #FX provides an easy way to do this, without the burden of Higher-Kinded Types.

Learn more
Self-contained example of testing with modules and Arrow FX

Self-contained example of testing with modules and Arrow FX

undefined

This post shows a porting with Kotlin and Arrow FX of a self-contained testing example with Scala ZIO

Learn more
How KEEP-87 & Typeclasses will change the way we write Kotlin

How KEEP-87 & Typeclasses will change the way we write Kotlin

undefined

Short introduction into the proposal KEEP-87 and how it would be able to improve the language.

Learn more