ujson.Platform.scala Maven / Gradle / Ivy
package ujson
object Platform{
@inline def charAt(s: CharSequence, i: Int) = {
if (i >= s.length) throw new StringIndexOutOfBoundsException(i)
s.charAt(i)
}
@inline def charAt(s: String, i: Int) = {
if (i >= s.length) throw new StringIndexOutOfBoundsException(i)
s.charAt(i)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy