MVN

com.ckkloverdos : maybe

Maven & Gradle

Jan 29, 2013
4 usages
1 stars

Maybe · Scala Maybe. Inspired by Lift's Box, Haskell's Maybe and Scala's Option. A few noteable characteristics: * `Maybe()` is a polymorphich constructor that Does The Right Thing, no matter the input. * `get` is only provided for a `Just` value, not in the general `Maybe` API. * `map` on a `Just` Does The Right Thing, even if the calling function explodes.

<dependency>
    <groupId>com.ckkloverdos</groupId>
    <artifactId>maybe</artifactId>
    <version>0.6.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.ckkloverdos : maybe to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.6.0

All Versions

Choose a version of com.ckkloverdos : maybe to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.6.x
maybe-0.6.0
0.5.x
maybe-0.5.0
0.4.x
maybe-0.4.0

How to add a dependency to Maven

Add the following com.ckkloverdos : maybe maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.ckkloverdos</groupId>
    <artifactId>maybe</artifactId>
    <version>0.6.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.ckkloverdos : maybe gradle dependency to your build.gradle file:

implementation 'com.ckkloverdos:maybe:0.6.0'

Gradle Kotlin DSL: Add the following com.ckkloverdos : maybe gradle kotlin dependency to your build.gradle.kts file:

implementation("com.ckkloverdos:maybe:0.6.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.ckkloverdos : maybe sbt scala dependency to your build.sbt file:

libraryDependencies += "com.ckkloverdos" % "maybe" % "0.6.0"

Advertisement