Is this intentional, Kotlin SNAPSHOT build that th...
# stdlib
a
Is this intentional, Kotlin SNAPSHOT build that the signature of
with
has changed? was in all previous versions (BETA 4 and before):
Copy code
public inline fun <T> T.with(initWith: T.() -> Unit): T { … }
now in SNAPSHOT is:
Copy code
public inline fun <T, R> with(receiver: T, f: (T) -> R): R {  … }
EDIT, is my bad, repackaging of things changed what was imported at the moment when using SNAPSHOT vs. BETA 4