GithubHelp home page GithubHelp logo

zkotlin's Introduction

zkotlin

Maven Central

Extensions for Kotlin Language

  • Either<L, R> - Examples

    • Either.Left<L,R> Either.Right<L,R>

      • Either.right<Int, String>("right value")
      • Either.left<Int, String>(-1)
      • Either.rightOf("right value")
      • Either.leftOf(-1)
    • fun isRight(): Boolean

    • fun isLeft(): Boolean

    • fun component1(): L

    • fun component2(): R

    • fun get(): R

    • fun failure(): L

    • fun success(onSuccess: (R) -> T): T

    • fun failure(onFail: (L) -> T): T

    • fun fold(left: (L) -> T, right: (R) -> T): T

    • fun <TL, TR> foldCompose(left: (L) -> Either<TL, TR>, right: (R) -> Either<TL, TR>): Either<TL, TR>

    • fun andThen(supplier: (R) -> Either<L, TR>): Either<L, TR>

    • fun getOrElse(supplier: (L) -> Either<L, R>): Either<L, R>

  • List<Either<L, R>> - Examples

    • fun <L, R, T> List<Either<L, R>>.fold(onError: (L) -> Unit, onSuccess: (R) -> T): List
    • fun <L, R> List<Either<L, R>>.foldSuccess(): List
    • fun <L, R, T> List<Either<L, R>>.foldSuccess(onSuccess: (R) -> T): List
    • fun <L, R> List<Either<L, R>>.foldError(onError: (L) -> Unit): List<Either<L, R>>
  • Coroutine List - Examples

    • suspend fun List<Deferred>.await()
  • Currying - Examples

    • ::foobar(a,b).curried()
    • ::foobar(a,b,c).curried()
    • max of 5 parameters foobar(a,b,c,d,e)
  • Int - Examples

    • fun isEven(): Boolean
    • fun isOdd(): Boolean

zkotlin's People

Contributors

mmatsumoto avatar arthurccosta avatar bbranquinho avatar maykonlm avatar sandokandias avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.