flatMapIndexed

inline fun <R> Query.flatMapIndexed(transform: (index: Int, row: QueryRowSet) -> Iterable<R>): List<R>(source)

Return a single list of all elements yielded from results of transform function being invoked on each row and its index in the query.

Since

3.1.0