MappedEffectHandler
class MappedEffectHandler<I, O, II, OO>(effectHandler: Connectable<II, OO>, mapEffect: (I) -> II? = { null }, mapEvent: (OO) -> O? = { null }) : Connectable<I, O>
Creates a Connectable that delegates to effectHandler and maps the Effect and Events using mapEffect and mapEvent.