// "Replace iteration with bulk 'TestClass.test()' call" "true-preview" package testpackage; import java.util.*; interface TestClass { Iterable test(Iterable entities); S test(S entity); } public class Main { public void test(TestClass repo, String[] stringsToSave) { Arrays.stream(stringsToSave).forEach(repo::test); } }