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

io.circe.StringUtil.scala Maven / Gradle / Ivy

There is a newer version: 2.32.0
Show newest version
package io.circe

private[circe] object StringUtil {
  def toString[A](buf: Array[Byte], len: Int): String = {
    val end = len - 1
    var s = ""
    var i = 1
    while (i < end) {
      s += buf(i).toChar.toString
      i += 1
    }
    s
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy