Find java.util.stream.Stream friction inside Kotlin
Recipe ID
org.openrewrite.kotlin.interop.FindStreamFriction$KtRecipeArtifact
io.moderne.recipe:recipes-kotlinBundle every Stream-related search: declarations returning Stream<T>, Collectors.toList() terminals, filter.map chains, and Stream.of constructions. Each match has a Kotlin equivalent in Sequence/Iterable/Flow that's idiomatic at the same call site.
Usage
This recipe has no required configuration options. You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.kotlin.interop.FindStreamFriction$KtRecipeIf the recipe isn’t available locally, install it with:
mod config recipes jar install io.moderne.recipe:recipes-kotlin:0.2.0Definition
This recipe runs the following recipes in order.
- Find functions returning
java.util.stream.Stream<T>org.openrewrite.kotlin.interop.FindStreamReturn$KtRecipe - Find
stream.collect(Collectors.toList())callsorg.openrewrite.kotlin.interop.FindStreamCollectorsToList$KtRecipe - Find
stream.filter(...).map(...)chainsorg.openrewrite.kotlin.interop.FindStreamFilterMap$KtRecipe - Find
Stream.of(...)callsorg.openrewrite.kotlin.interop.FindStreamOfCall$KtRecipe
Data tables
Structured output this recipe can produce.
- Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats