Join Slack
Powered by
`lateinit var: String` is implemented as `var: Str...
# getting-started
v
voddan
01/06/2017, 1:43 PM
lateinit var: String
is implemented as
var: String?
and inited with
null
. The trick is that the compiler believes you to initialise it before the first use and does not bother you with checks
👍 1
Open in Slack
Previous
Next