<@U10EJRH2L> commented on <@U0F3291QE>’s file <htt...
# tornadofx
u
@Ruckus commented on @edvin’s file https://kotlinlang.slack.com/files/U0F3291QE/F58MH8VGQ/-.kt: Shouldn't you have used
Copy code
for(index in 0..anchors.length) { ... }
instead of
Copy code
IntRange(0, anchors.length).forEach { index -> ... }
to allow the compiler to optimize the for loop?