Jamy
07/06/2020, 11:55 PMval a = b?.c.toString()
where b == null
results a != null
since in this case a == "null"
. So to get what I want, I have to write val a = b?.c?.toString()
. It’s not a problem, I just don’t understand the purpose.Derek Peirce
07/07/2020, 1:51 AMMilan Hruban
07/07/2020, 6:23 AMbogdoll
07/08/2020, 6:49 PMelizarov
07/09/2020, 9:02 AMJamy
07/09/2020, 11:53 PM