elect
11/21/2019, 12:13 PM!!
) we shall also have it after .?
karelpeeters
11/21/2019, 4:21 PMelect
11/21/2019, 5:29 PMarray!![0]
and array?.get(0)
Fudge
11/21/2019, 11:16 PMarray!!
is an expression and array?
is not. You can visualize it by putting parentheses
(array!!)[0]
vs (array?)[0]
or (array?.)[0]
Not to say it’s impossible to special case that, other languages have done itkarelpeeters
11/21/2019, 11:18 PM