Remove entire stdlib opt-in for unsigned types to control precisely where they are exposed

This commit is contained in:
Ilya Gorbunov
2018-09-17 01:18:23 +03:00
parent 97999a6415
commit f4af656e20
2 changed files with 1 additions and 1 deletions
@@ -67,6 +67,7 @@ public inline fun <C, R> C.ifEmpty(defaultValue: () -> R): R where C : Array<*>,
if (isEmpty()) defaultValue() else this
@UseExperimental(ExperimentalUnsignedTypes::class)
@SinceKotlin("1.3")
@PublishedApi
@kotlin.jvm.JvmName("contentDeepEquals")