<@U0B891ZTR>: 99% of ranges are inclusive. See I ...
# announcements
a
@michaelrocks: 99% of ranges are inclusive. See I made up a number without evidence as well. Your code is not mine, and Kotlin code is not Java. We don't need 0..size()-1 because we can just
for n in list
or
for n in array.indices
and not use a range in cases that you might have used
size()-1
in the past. I cant think of a time I've had an exclusive range in the past year other than for dates, and recently changed those to be inclusive.