I can’t figure out why this is happening on my cla...
# announcements
d
I can’t figure out why this is happening on my class, while is not happening on a
MutableList
, for instance 😕
✔️ 1
Copy code
/** @return a new [Url] with the given [UrlQuery] */
operator fun plus( query: UrlQuery ) = copy().apply copy@ { this@copy += query }

/** Add the given [UrlQuery] to [Url.queries] */
operator fun plusAssign( query: UrlQuery ) {
    this.queries[query.first] = query.second
    }
Ops, dumb question 😅 because I got a
var Url
in my receiver 😄
That should be
val
👍🏼 1