``` fun <A> Iterable<A>.reverseIf(cond...
# announcements
r
Copy code
fun <A> Iterable<A>.reverseIf(condition: Boolean): List<A> = if (condition) this.asReversed() else this
5