addAllTo
fun Sequence<ApkCompatibility>.addAllTo(destination: MutableList<ApkCompatibility>): Sequence<ApkCompatibility>
Deprecated
This function was meant to allow duplicating of one-time APK sequences for processing of grouped APK splits after. Existing APIs were not a good solution for that use case, so SplitPackage API was introduced which you should migrate to if you were using addAllTo(). Usage of this function will become an error in the next minor release.
Replace with
this.onEach { destination += it }
Content copied to clipboard
Returns a sequence which adds all elements to the destination list as they pass through.
This operation is intermediate and stateless.