Alejandro Rios
09/21/2021, 7:30 PMval first = listOf(1, 2, 3, 4, 5)
val second = listOf(1, 2, 3)
If I use first.minus(second) I’ll get [4, 5] but If I use second.minus(first) I’ll get []Paul Griffith
09/21/2021, 7:40 PMPaul Griffith
09/21/2021, 7:40 PMAlejandro Rios
09/21/2021, 7:50 PMAlejandro Rios
09/21/2021, 7:50 PMJavier
09/21/2021, 10:39 PMintersect function to the stdlib, I think they should add the opposite tooilya.gorbunov
09/22/2021, 12:37 PMintersect was not added recently, it's been there quite a long timeilya.gorbunov
09/22/2021, 12:38 PMJavier
09/22/2021, 1:28 PMAlejandro Rios
09/23/2021, 1:01 AMilya.gorbunov
09/23/2021, 4:41 PMJavier
09/23/2021, 7:00 PM