Package oolong.effect - Oolong
Package oolong.effect
Functions
Name | Summary |
---|---|
(common) batch | Compose effects into a single Effect.fun <Msg> batch(vararg effects: Effect <Msg>): Effect <Msg> fun <Msg> batch(effects: Iterable < Effect <Msg>>): Effect <Msg> |
(common) map | Map effect of type A to Effect of B using f.fun <A, B> map(effect: Effect <A>, f: (A) -> B): Effect <B> |
(common) none | Create an empty Effect.fun <Msg> none(): Effect <Msg> |