Null
Provide utilities around null('a)
.
type t('a) = Js.null('a);
Local alias for Js.null('a)
.
let return: 'a => t('a);
Constructs a value of Js.null('a)
containing a value of 'a
.
let test: t('a) => bool;
Returns true
if the given value is empty (null
), false
otherwise.
let empty: t('a);
The empty value, null
.
let getUnsafe: t('a) => 'a;
let getExn: t('a) => 'a;
let bind: (t('a), (. 'a) => 'b) => t('b);
Maps the contained value using the given function.
If Js.null('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.null('b)
.
RElet maybeGreetWorld = (maybeGreeting: Js.null(string)) =>
Js.Null.bind(maybeGreeting, [@bs] greeting => greeting ++ " world!");
let iter: (t('a), (. 'a) => unit) => unit;
Iterates over the contained value with the given function.
If Js.null('a)
contains a value, that value is unwrapped and applied to the given function.
RElet maybeSay = (maybeMessage: Js.null(string)) =>
Js.Null.iter(maybeMessage, [@bs] message => Js.log(message));
let fromOption: option('a) => t('a);
Maps option('a)
to Js.null('a)
.
Some(a)
=> a
None
=> empty
let from_opt: option('a) => t('a);
let toOption: t('a) => option('a);
Maps Js.null('a)
to option('a)
.
a
=> Some(a)
empty
=> None
let to_opt: t('a) => option('a);