Return the first some in input order, or none if every input is none. Useful for fallback chains where any source of the value will do.
none
const contact = any([fromNullable(user.email), fromNullable(user.phone)]) Copy
const contact = any([fromNullable(user.email), fromNullable(user.phone)])
Return the first some in input order, or none if every input is
none. Useful for fallback chains where any source of the value will do.