m

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.
https://github.com/loverdos/maybe
Apache 2
ckkloverdos.com
Christos KK Loverdos
Files download
File Operation
maybe-0.6.0.jar download
maybe-0.6.0.pom download
maybe-0.6.0-sources.jar download
Apache Maven
<dependency>
  <groupId>com.ckkloverdos</groupId>
  <artifactId>maybe</artifactId>
  <version>0.6.0</version>
</dependency>
Gradle Groovy
implementation 'com.ckkloverdos:maybe:0.6.0'
Gradle Kotlin
implementation("com.ckkloverdos:maybe:0.6.0")
Scala SBT
libraryDependencies += "com.ckkloverdos" % "maybe" % "0.6.0"
Groovy Grape
@Grapes(
  @Grab(group='com.ckkloverdos', module='maybe', version='0.6.0')
)
Apache Ivy
<dependency org="com.ckkloverdos" name="maybe" rev="0.6.0" />
Leiningen
[com.ckkloverdos/maybe "0.6.0"]
Apache Buildr
'com.ckkloverdos:maybe:jar:0.6.0'