Join Slack
Powered by
In a list of Kotlin language proposals there was a...
# random
m
miha-x64
03/30/2017, 11:09 AM
In a list of Kotlin language proposals there was an array/list slicing, e. g.
array[1:5]
. As it turns out, similar things can be achieved with current Kotlin syntax:
array[1..5]
.
👍 3
4
Views
Open in Slack
Previous
Next