aboutsummaryrefslogtreecommitdiff
path: root/src/maybe.js
blob: 3d83b20770ce75626951e59485e0e9d246366d0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import * as wrapper from "./wrapper.js"

export const Nothing   = nothing => just => nothing
export const Just = v => nothing => just => just(v)

export const isNothing = maybe => maybe(true)(_ => false)
export const isJust    = maybe => maybe(false)(_ => true)

export const getValue = just => just()(v => v)

export const show = maybe => maybe("Nothing")(v => "Just " + v)

export const unit = Just
export const bind = mx => f => mx(mx)(f)

export const DO = wrapper.DO(unit, bind)