🏠
Working from home
Functional programming enthusiast
- London, United Kingdom
- https://kioba.dev
Highlights
- Pro
Pinned Loading
-
MinStack.kt
MinStack.kt 1package dev.kioba.minstack
23sealed class MinStack<out A> {
4companion object
5}
-
Recursive ADT
Recursive ADT 1package dev.kioba.ilist
23sealed class IList<A>
4class INil<A> : IList<A>()
5class ICons<A>(val head: A, val tail: IList<A>) : IList<A>()
-
Tree.kt
Tree.kt 1package kioba.dev
23sealed class Tree<T>
4data class Leaf<T>(val value: T) : Tree<T>()
5data class Node<T>(val left: Tree<T>, val right: Tree<T>) : Tree<T>()
-
arrow-kt/arrow
arrow-kt/arrow PublicΛrrow - Functional companion to Kotlin's Standard Library
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.