In mixed Java/Kotlin codebase I’ve seen usage of CollectionsKt#filter
in Java code.
Is this API considered public or can it change between minor stdlib versions?
For Kotlin it doesn’t matter if filter
moves between files, but for Java it’s important because we have to import class CollectionsKt
, and if filter
moves to IterablesKt
than our code will break.