parseInt

external fun parseInt(s: String): Int(source)

Deprecated (with error)

Use toInt() instead.

Replace with

s.toInt()

Since Kotlin

1.1

external fun parseInt(s: String, radix: Int = definedExternally): Int(source)

Deprecated (with error)

Use toInt(radix) instead.

Replace with

s.toInt(radix)

Since Kotlin

1.1