Undefined
Provides functionality for dealing with the Js.undefined<'a> type
t
Deprecated
type t<'a> = undefined<'a>Local alias for Js.undefined<'a>
return
Deprecated
let return: 'a => t<'a>Constructs a value of Js.undefined<'a> containing a value of 'a.
test
Deprecated
let test: t<'a> => boolReturns true if the given value is empty (undefined), false otherwise.
testAny
Deprecated
let testAny: 'a => boolReturns true if the given value is empty (undefined).
since 1.6.1
empty
Deprecated
let empty: t<'a>The empty value, undefined
getUnsafe
Deprecated
let getUnsafe: t<'a> => 'agetExn
Deprecated
let getExn: t<'a> => 'abind
Deprecated
let bind: (t<'a>, 'a => 'b) => t<'b>Maps the contained value using the given function.
If Js.undefined<'a> contains a value, that value is unwrapped, mapped to a
'b using the given function a' => 'b, then wrapped back up and returned as
Js.undefined<'b>.
Examples
RESCRIPTlet maybeGreetWorld = (maybeGreeting: Js.undefined<string>) =>
Js.Undefined.bind(maybeGreeting, greeting => greeting ++ " world!")
iter
Deprecated
let iter: (t<'a>, 'a => unit) => unitIterates over the contained value with the given function. If
Js.undefined<'a> contains a value, that value is unwrapped and applied to the
given function.
Examples
RESCRIPTlet maybeSay = (maybeMessage: Js.undefined<string>) =>
Js.Undefined.iter(maybeMessage, message => Js.log(message))
fromOption
Deprecated
let fromOption: option<'a> => t<'a>Maps option<'a> to Js.undefined<'a>.
Some(a) => a
None => empty
from_opt
Deprecated
let from_opt: option<'a> => t<'a>toOption
Deprecated
let toOption: t<'a> => option<'a>Maps Js.undefined<'a> to option<'a>
a => Some(a)
empty => None
to_opt
Deprecated
let to_opt: t<'a> => option<'a>