Does anyone know if `foo in listOf(“a”, “b”, “c”)`...
# getting-started
u
Does anyone know if
foo in listOf(“a”, “b”, “c”)
will have the instances (List and the underlying array) optimized away, when using say R8? (So it becomes just a 3 or-ed statements)
🚫 2