Hi all. Are there any plans for making `lazy` a pr...
# language-proposals
g
Hi all. Are there any plans for making
lazy
a proper keyword in K (similar to Swift)? I found myself using “laziness” more often than I expected, and thus writing
val userDAO by lazy { UserDAO() }
looks far more awkward than
lazy val userDAO = UserDAO()