I'm not sure why you can't use the RC as it's out,...
# announcements
a
I'm not sure why you can't use the RC as it's out, but in the mean time you could add the extension function yourself
Copy code
public fun <T> Collection<T>.plusElement(element: T): List<T> {
    return plus(element)
}