Many operations with `IntRange` are optimized at c...
# android
m
Many operations with
IntRange
are optimized at compiler-level.
i in 0..N - 1
can be aslo written as
i in 0 until N
, and someone said that this is also optimized (I have troubles in finding it in history).
💯 2