Skip to main content

articles

45 posts tagged with “articles”

Advanced FP for the Enterprise Bee: Optics

Advanced FP for the Enterprise Bee: Optics

February 10, 2021

This is the sixth post in a series introducing advanced FP concepts via Kotlin and Arrow. This article covers Optics with Kotlin and Arrow.

Learn more
Advanced FP for the Enterprise Bee: Typeclasses

Advanced FP for the Enterprise Bee: Typeclasses

February 5, 2021

This fifth post in a series introduces advanced FP concepts via Kotlin and Arrow. This article introduces Typeclasses, and reviews a practical example of Typeclasses from the Arrow library.

Learn more
Advanced FP for the Enterprise Bee: Kleisli

Advanced FP for the Enterprise Bee: Kleisli

January 29, 2021

This fourth post in a series introduces advanced FP concepts via Kotlin and Arrow. This article looks at the Kleisli type.

Learn more
Advanced FP for the Enterprise Bee: Higher Kinded Types

Advanced FP for the Enterprise Bee: Higher Kinded Types

January 22, 2021

This third post in a series introduces advanced FP concepts via Kotlin and Arrow. This article shows the usefulness of Higher Kinded Types.

Learn more
Advanced FP for the Enterprise Bee: Applicatives

Advanced FP for the Enterprise Bee: Applicatives

January 15, 2021

This second post in a series introduces advanced FP concepts via Kotlin and Arrow. This article takes a deep dive into Applicatives.

Learn more
Advanced FP for the Enterprise Bee: Traverse

Advanced FP for the Enterprise Bee: Traverse

January 8, 2021

This first post in a series introduces advanced FP concepts via Kotlin and Arrow. This article takes a deep dive into the Traverse operation.

Learn more
Arrow Promoted to Adopt by Technology Radar

Arrow Promoted to Adopt by Technology Radar

October 28, 2020

Arrow is promoted as the functional companion for Kotlin's standard library. Indeed, the package of ready-to-use higher-level abstractions delivered by Arrow has proven so useful that our teams now consider Arrow a sensible default when working with Kotlin. Recently, in preparation for the 1.0 release, the Arrow team introduced several changes, including the addition of new modules but also some deprecations and removals.

Learn more
How to fix the pain of modifying Kotlin nested data classes

How to fix the pain of modifying Kotlin nested data classes

October 28, 2020

Lenses are not part of the Kotlin Standard Library yet, so we will need to use an Open Source library called Arrow-kt. Arrow-kt is a huge community effort to bring some of the missing functional programming features to Kotlin.

Learn more