Skip to content
View kioba's full-sized avatar
🏠
Working from home
🏠
Working from home

Highlights

  • Pro
Block or Report

Block or report kioba

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. MinStack.kt MinStack.kt
    1
    package dev.kioba.minstack
    2
    
                  
    3
    sealed class MinStack<out A> {
    4
        companion object
    5
    }
  2. Recursive ADT Recursive ADT
    1
    package dev.kioba.ilist
    2
    
                  
    3
    sealed class IList<A>
    4
    class INil<A> : IList<A>()
    5
    class ICons<A>(val head: A, val tail: IList<A>) : IList<A>()
  3. Tree.kt Tree.kt
    1
    package kioba.dev
    2
    
                  
    3
    sealed class Tree<T>
    4
    data class Leaf<T>(val value: T) : Tree<T>()
    5
    data class Node<T>(val left: Tree<T>, val right: Tree<T>) : Tree<T>()
  4. arrow-kt/arrow arrow-kt/arrow Public

    Λrrow - Functional companion to Kotlin's Standard Library

    Kotlin 6.1k 438

  5. quack quack Public

    Kotlin

  6. schrodinger schrodinger Public

    Kotlin