zip
Deprecated
Prefer using the inline option DSL
Replace with
import arrow.core.raise.option
Content copied to clipboard
option { map(bind(), b.bind()) }Content copied to clipboard
Deprecated
Prefer using the inline option DSL
Replace with
import arrow.core.raise.option
Content copied to clipboard
option { map(bind(), b.bind(), c.bind()) }Content copied to clipboard
inline fun <B, C, D, E> zip(b: Option<B>, c: Option<C>, d: Option<D>, map: (A, B, C, D) -> E): Option<E>
Deprecated
Prefer using the inline option DSL
Replace with
import arrow.core.raise.option
Content copied to clipboard
option { map(bind(), b.bind(), c.bind(), d.bind()) }Content copied to clipboard
inline fun <B, C, D, E, F> zip(b: Option<B>, c: Option<C>, d: Option<D>, e: Option<E>, map: (A, B, C, D, E) -> F): Option<F>
Deprecated
Prefer using the inline option DSL
Replace with
import arrow.core.raise.option
Content copied to clipboard
option { map(bind(), b.bind(), c.bind(), d.bind(), e.bind()) }Content copied to clipboard
inline fun <B, C, D, E, F, G> zip(b: Option<B>, c: Option<C>, d: Option<D>, e: Option<E>, f: Option<F>, map: (A, B, C, D, E, F) -> G): Option<G>
Deprecated
Prefer using the inline option DSL
Replace with
import arrow.core.raise.option
Content copied to clipboard
option { map(bind(), b.bind(), c.bind(), d.bind(), e.bind(), f.bind()) }Content copied to clipboard
inline fun <B, C, D, E, F, G, H> zip(b: Option<B>, c: Option<C>, d: Option<D>, e: Option<E>, f: Option<F>, g: Option<G>, map: (A, B, C, D, E, F, G) -> H): Option<H>
Deprecated
Prefer using the inline option DSL
Replace with
import arrow.core.raise.option
Content copied to clipboard
option { map(bind(), b.bind(), c.bind(), d.bind(), e.bind(), f.bind(), g.bind()) }Content copied to clipboard
inline fun <B, C, D, E, F, G, H, I> zip(b: Option<B>, c: Option<C>, d: Option<D>, e: Option<E>, f: Option<F>, g: Option<G>, h: Option<H>, map: (A, B, C, D, E, F, G, H) -> I): Option<I>
Deprecated
Prefer using the inline option DSL
Replace with
import arrow.core.raise.option
Content copied to clipboard
option { map(bind(), b.bind(), c.bind(), d.bind(), e.bind(), f.bind(), g.bind(), h.bind()) }Content copied to clipboard
inline fun <B, C, D, E, F, G, H, I, J> zip(b: Option<B>, c: Option<C>, d: Option<D>, e: Option<E>, f: Option<F>, g: Option<G>, h: Option<H>, i: Option<I>, map: (A, B, C, D, E, F, G, H, I) -> J): Option<J>
Deprecated
Prefer using the inline option DSL
Replace with
import arrow.core.raise.option
Content copied to clipboard
option { map(bind(), b.bind(), c.bind(), d.bind(), e.bind(), f.bind(), g.bind(), h.bind(), i.bind()) }Content copied to clipboard
inline fun <B, C, D, E, F, G, H, I, J, K> zip(b: Option<B>, c: Option<C>, d: Option<D>, e: Option<E>, f: Option<F>, g: Option<G>, h: Option<H>, i: Option<I>, j: Option<J>, map: (A, B, C, D, E, F, G, H, I, J) -> K): Option<K>
Deprecated
Prefer using the inline option DSL
Replace with
import arrow.core.raise.option
Content copied to clipboard
option { map(bind(), b.bind(), c.bind(), d.bind(), e.bind(), f.bind(), g.bind(), h.bind(), i.bind(), j.bind()) }Content copied to clipboard