flatAndCollect<B, X> abstract method

Response<List<B>> flatAndCollect<B, X>(
  1. Iterable<X> source,
  2. Response<B> mapper(
    1. X source
    )
)

Implementation

Response<List<B>> flatAndCollect<B, X>(Iterable<X> source, Response<B> Function(X source) mapper);