Skip to content

Add more reactive inspired functionality on Stream (and maybe Iterable) #30536

Open
@lrhn

Description

@lrhn

Currently the simplest way to perform custom transformations of streams is to use the transform method.

someStream.transform(debounce(sec)).map(...).transform(switchLatest(...))

This is long and awkward compared to having the methods on the stream itself:

someStream.debounce(sec).map(...).switchLatest(...)

We should add more Rx inspired operations.

Metadata

Metadata

Assignees

No one assigned

    Labels

    area-core-librarySDK core library issues (core, async, ...); use area-vm or area-web for platform specific libraries.core-2library-asynctype-enhancementA request for a change that isn't a bug

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions