Lilly
04/17/2022, 11:56 AMfreeCompilerArgs += listOf()
("creates new list under the hood") and suggests to change it to freeCompilerArgs = freeCompilerArgs + listOf()
, I mean both create a new list?! Or does it warn because it's not obvious that a new list is created at first glance while the latter version is more explicit?Albert Chang
04/17/2022, 1:03 PM