VS
Size: a a a
VS
AS
function filterfilter() {
return pipe(
switchMap(i => from(i)),
mergeAll(),
filter(x => x.deleted),
toArray(),
)
}
VS
AS
AS
B
AT
AS
pipe(
switchMap(from),
mergeAll(),
filter(x => x.deleted),
toArray(),
map(xs => xs.map(x => of(x))),
)
VS
AS
B
VS
B
AS
VS
RG
VS
B
VS