com.netsensia.rivalchess.model.util.CommonUtils.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rivalchess-model Show documentation
Show all versions of rivalchess-model Show documentation
The simple model classes used by Rival Chess
The newest version!
package com.netsensia.rivalchess.model.util
object CommonUtils {
@kotlin.jvm.JvmStatic
fun isValidRankFileBoardReference(n: Int): Boolean {
return n in 0..7
}
fun isValidSquareReference(x: Int, y: Int): Boolean {
return isValidRankFileBoardReference(x) && isValidRankFileBoardReference(y)
}
}