reactormonk
06/12/2024, 5:27 PMList
and the iterate over them? ChatGPT seems to be about as confused as I am, as most functions I'd be looking for don't exist.Joffrey
06/12/2024, 5:28 PM(list1 + list2).forEach { ... }
Joffrey
06/12/2024, 5:29 PMreactormonk
06/12/2024, 5:29 PM+
is not definedJoffrey
06/12/2024, 5:29 PMreactormonk
06/12/2024, 5:29 PMJoffrey
06/12/2024, 5:30 PMephemient
06/12/2024, 6:30 PMsequenceOfNotNull(list1, list2).filterNotNull().flatten().forEach { ... }
although I find that having nullable lists may be a bad idea to start withLarry Garfield
06/12/2024, 8:58 PMShawn
06/13/2024, 4:18 PMJoffrey
06/14/2024, 8:22 AMLarry Garfield
06/14/2024, 1:42 PM