Ad
  • Custom User Avatar

    Random test doesn't work properly in Kotlin test.

    src/test/kotlin/tests.kt:15:69: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
    fun nextChar(from: Char, until: Char) = Random.nextInt(from.toInt(), until.toInt()).toChar()
    ^
    src/test/kotlin/tests.kt:15:84: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
    fun nextChar(from: Char, until: Char) = Random.nextInt(from.toInt(), until.toInt()).toChar()

  • Custom User Avatar

    is the meaning of it - '0' to convert char to integer again?