All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ujson.Platform.scala Maven / Gradle / Ivy

There is a newer version: 0.6.3
Show newest version
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