You are currently looking at the v6.0 - v8.2 docs (Reason v3.6 syntax edition). You can find the latest API docs here.
(These docs cover all versions between v3 to v8 and are equivalent to the old BuckleScript docs before the rebrand)
Undefined
Provide utilities around Js.undefined
.
t
REtype t('a) = Js.undefined('a);
Local alias for 'a Js.undefined.
return
RElet return: 'a => t('a);
Constructs a value of Js.undefined('a)
containing a value of 'a
.
test
RElet test: t('a) => bool;
Returns true
if the given value is empty (undefined), false
otherwise.
testAny
RElet testAny: 'a => bool;
Since 1.6.1 Returns true
if the given value is empty (undefined).
empty
RElet empty: t('a);
The empty value, undefined
.
getUnsafe
RElet getUnsafe: t('a) => 'a;
getExn
RElet getExn: t('a) => 'a;
bind
RElet 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)
.
RElet maybeGreetWorld = (maybeGreeting: Js.undefined(string)) =>
Js.Undefined.bind(maybeGreeting, [@bs] greeting => greeting ++ " world!");
iter
RElet iter: (t('a), (. 'a) => unit) => unit;
Iterates 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.
RElet maybeSay = (maybeMessage: Js.undefined(string)) =>
Js.Undefined.iter(maybeMessage, [@bs] message => Js.log(message));
fromOption
RElet fromOption: option('a) => t('a);
Maps option('a)
to Js.undefined('a)
.
Some(a)
=> a
None
=> empty
from_opt
RElet from_opt: option('a) => t('a);
toOption
RElet toOption: t('a) => option('a);
Maps Js.undefined('a)
to option('a)
a
=> Some(a)
empty
=> None
to_opt
RElet to_opt: t('a) => option('a);