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

org.json4s.Segments.scala Maven / Gradle / Ivy

There is a newer version: 4.1.0-M8
Show newest version
package org.json4s

private[json4s] object Segments {
  private[json4s] var segmentSize: Int = ParserUtil.defaultSegmentSize
  def apply(): Segment = {
    Segment(new Array(segmentSize))
  }

  def release(s: Segment): Unit = ()

  private[json4s] def clear(): Unit = ()
}

private[json4s] final case class Segment(seg: Array[Char])




© 2015 - 2024 Weber Informatics LLC | Privacy Policy