License |
License |
---|---|
Categories |
CategoriesErdos Business Logic Libraries Science |
GroupId | GroupIdcom.ckkloverdos |
ArtifactId | ArtifactIdmaybe |
Last Version | Last Version0.6.0 |
Release Date | Release Date |
Type | Typejar |
Description |
DescriptionMaybe
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.
|
Project URL |
Project URL |
Project Organization |
Project Organization |
Source Code Management |
Source Code Management |
Filename | Size |
---|---|
maybe-0.6.0.pom | |
maybe-0.6.0.jar | 39 KB |
maybe-0.6.0-sources.jar | 4 KB |
maybe-0.6.0-javadoc.jar | 20 KB |
Browse |
<!-- https://jarcasting.com/artifacts/com.ckkloverdos/maybe/ -->
<dependency>
<groupId>com.ckkloverdos</groupId>
<artifactId>maybe</artifactId>
<version>0.6.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.ckkloverdos/maybe/
implementation 'com.ckkloverdos:maybe:0.6.0'
// https://jarcasting.com/artifacts/com.ckkloverdos/maybe/
implementation ("com.ckkloverdos:maybe:0.6.0")
'com.ckkloverdos:maybe:jar:0.6.0'
<dependency org="com.ckkloverdos" name="maybe" rev="0.6.0">
<artifact name="maybe" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.ckkloverdos', module='maybe', version='0.6.0')
)
libraryDependencies += "com.ckkloverdos" % "maybe" % "0.6.0"
[com.ckkloverdos/maybe "0.6.0"]
Group / Artifact | Type | Version |
---|---|---|
org.scala-lang : scala-library | jar | 2.9.1 |
Group / Artifact | Type | Version |
---|---|---|
junit : junit | jar | 4.10 |