Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add whereType transformer #60

Merged
merged 7 commits into from
Feb 12, 2019
Merged

Add whereType transformer #60

merged 7 commits into from
Feb 12, 2019

Commits on Feb 11, 2019

  1. Add whereType transformer

    This needs to be implemented as it's own class instead of using
    one of the helpers like `fromHandlers` because it has unique generic
    type requirements. We want to avoid requring the call site to re-specify
    the generic type of the input stream. The return type needs to be a
    `StreamTransformer<Null, R>` to allow to satisfy static checking.
    However the argument to `bind` at runtime will never be a `Stream<Null>`
    so we need to define it explicitly to widen the allowed argument.
    natebosch committed Feb 11, 2019
    Configuration menu
    Copy the full SHA
    ee545a8 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2019

  1. Configuration menu
    Copy the full SHA
    9449f17 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d003e1f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    95aa506 View commit details
    Browse the repository at this point in the history
  4. rename to source

    natebosch committed Feb 12, 2019
    Configuration menu
    Copy the full SHA
    a319ebc View commit details
    Browse the repository at this point in the history
  5. spelling

    natebosch committed Feb 12, 2019
    Configuration menu
    Copy the full SHA
    7b52759 View commit details
    Browse the repository at this point in the history
  6. More typos

    natebosch committed Feb 12, 2019
    Configuration menu
    Copy the full SHA
    59ce371 View commit details
    Browse the repository at this point in the history