Download maybe-0.5.0.jar file - Jar m

Jar examples for m:maybe

Description

Scala Maybe. Inspired by Lift's Box, Haskell's Maybe and Scala's Option. We innovate in a few areas, especially regarding the existing Scala APIs: * `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.

You can download jar file maybe 0.5.0 in this page.

License

The MIT License (MIT)

Build File

You can use the following script to add maybe-0.5.0.jar to your project.

<dependency>
   <groupId>com.ckkloverdos</groupId>
   <artifactId>maybe</artifactId>
   <version>0.5.0</version>
</dependency>
compile group: 'com.ckkloverdos', name: 'maybe', version: '0.5.0'
libraryDependencies += "com.ckkloverdos" % "maybe" % "0.5.0"
<dependency org="com.ckkloverdos" name="maybe" rev="0.5.0"/>
@Grapes(@Grab(group='com.ckkloverdos', module='maybe', version='0.5.0'))
'com.ckkloverdos:maybe:jar:0.5.0'

Download

Click the following link to download the jar file.

maybe-0.5.0-javadoc.jar
maybe-0.5.0-sources.jar
maybe-0.5.0.jar
maybe-0.5.0.pom



Related Tutorials