Is there a equivalent to the replaceAll { } function on a ArrayList in Kotlin? (which mutates the array directly, when using for example a map { } I would have to assign the result back do the array or do a clear / addAll)
a
Andreas Sinz
05/24/2017, 9:28 AM
ferranis: Have you tried using
replaceAll { }
from jre8?
d
Daniel
05/24/2017, 9:29 AM
Had this beforehand and crashed my app with it (java 8 not enabled anymore) 😞