io.github.ablearthy.tl.parser.StringUtils.scala Maven / Gradle / Ivy
The newest version!
package io.github.ablearthy.tl.parser
object StringUtils {
def hexToInt(s: String): Int = {
s.toList.map("0123456789abcdef".indexOf(_)).reduceLeft(_ * 16 + _)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy