Package-level declarations
Custom types (e.g. Outcome
)
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Zip allows you to combine two or more Outcome
s easily with a supplied function.
inline fun <E, A, B, C, D> Outcome<E, A>.zip(o1: Outcome<E, B>, o2: Outcome<E, C>, crossinline f: (A, B, C) -> D): Outcome<E, D>