I'm looking for the function in reactive-banana that will choose from which event stream to emit next depending on the incoming value of another event stream or signal (Behaviour ?). In the library for scala, reactive-web this is done with:
flatMap[U](f: T => EventStream[U]): EventStream[U]
thanks !