Flattens a stream of streams. The result stream reflects changes from the last stream only.
Signature
Stream (Stream a) -> Stream b
Usage
var chatrooms = flyd.stream();
var messagesStreams = flyd.map(function(id) {
return createMessageStream(id);
}, chatrooms);
var currentMessages = switchLatest(messagesStreams);