Hi, I have a little question, I have something lik...
# announcements
y
Hi, I have a little question, I have something like that :
Copy code
import java.nio.Path

val path = ... somepath
var l = emptyList<Path>()
l += path
But the
plus
is dipatched to the
plus(e:Iterable<T>)
. Is there a way to get it dispatched to the
plus(e: T)
?