DOC

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.

Table Of Contents

Latest Version

Download com.ckkloverdos : maybe Javadoc & API Documentation - Latest Versions:

All Versions

Download com.ckkloverdos : maybe Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
0.6.x
0.5.x
0.4.x

How to open Javadoc JAR file in web browser

  1. Rename the file maybe-0.6.0-javadoc.jar to maybe-0.6.0-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder maybe-0.6.0-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "maybe-0.6.0-sources.jar" -d "maybe-0.6.0-javadoc" -subpackages 

Advertisement