Jonathan Davis

Results 1 issues of Jonathan Davis

When running the following code in _Kotlin-Explorer_ ``` public val Int.sign: Int get() = when { this < 0 -> -1 this > 0 -> 1 else -> 0 }...