maybe_map2 {maybe}R Documentation

Evaluate a binary function on two maybe values

Description

Evaluate a binary function on two maybe values

Usage

maybe_map2(.m1, .m2, .f, ...)

Arguments

.m1

A maybe value

.m2

A maybe value

.f

A binary function to apply to the maybe values

...

Named arguments for the function .f

Value

A maybe value

Examples

maybe_map2(just(1), just(2), `+`)
maybe_map2(nothing(), just(2), `/`)

[Package maybe version 1.1.0 Index]