Skip to content

Instantly share code, notes, and snippets.

@auxiliaire
Created April 9, 2021 15:57
Show Gist options
  • Select an option

  • Save auxiliaire/5dcfda0ec6b716a1478641e6ce1059fc to your computer and use it in GitHub Desktop.

Select an option

Save auxiliaire/5dcfda0ec6b716a1478641e6ce1059fc to your computer and use it in GitHub Desktop.
The `maybe` function in PHP
function maybe(...$args) {
return curry(fn(mixed $v, callable $f, Maybe $m) =>
match (true) {
$m->isNothing() => $v,
default => call_user_func($f, $m->get())
}
)(...$args);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment