Having the following (just a quick example):
observable.pipe(map( s => s.anything ))
.pipe(filter(t => t > 5))
.pipe(map( t => t+5))
.subscribe( XXX )
Why should I use 1 pipe instead?
observable.pipe(
map( s => s.anything ), filter(t => t > 5),map( t => t+5))
.subscribe( XXX )
To me, the code is more nice and readable in the first case. But no idea if that affects the behaviour anyway.