https://kotlinlang.org logo
#random
Title
k

karelpeeters

02/15/2018, 5:52 PM
@elect What? Do you mean something like
a!! + b
? Did that ever not work?
e

elect

02/15/2018, 7:44 PM
a!![0]
k

karelpeeters

02/15/2018, 7:48 PM
And did that ever not work? Did you have to do
(a!!)[0]
in the past?
e

elect

02/15/2018, 7:48 PM
no, you had to
a!!.get(0)
k

karelpeeters

02/15/2018, 7:49 PM
Really? The one with the parentheses didn't work either?
e

elect

02/15/2018, 7:49 PM
no, the one with the parentheses was the only working
k

karelpeeters

02/15/2018, 7:50 PM
Right but the
(a!!)[0]
.
e

elect

02/15/2018, 7:50 PM
ah yeah, sorry
v

voddan

02/16/2018, 5:07 AM
a?.[0]
doesn't work, so we do
a?.get(0)
3 Views