abstract fun <R> map(mapper: (T) -> R): Cursor<out R>
Lazily transforms every element yielded by this cursor via mapper, returning a new cursor of the mapped elements. The returned cursor mirrors the laziness of the original one: mapper is invoked on each element only when it is actually traversed.