select<S> abstract method

S select<S>(
  1. S select(
    1. I snapshot
    ), {
  2. Stream<S> pipe(
    1. Stream<S> source
    )?,
})

Implementation

S select<S>(
  S Function(I snapshot) select, {
  Stream<S> Function(Stream<S> source)? pipe,
});