Package

org.json4s.ast

fast

Permalink

package fast

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. fast
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. case class JArray(value: Array[JValue] = js.Array()) extends JValue with Product with Serializable

    Permalink

    JArray is internally represented as a mutable Array, to improve sequential performance

    JArray is internally represented as a mutable Array, to improve sequential performance

    Annotations
    @JSExportAll()
  2. sealed abstract class JBoolean extends JValue

    Permalink

    Implements named extractors so we can avoid boxing

  3. case class JField(field: String, value: JValue) extends Product with Serializable

    Permalink
    Annotations
    @JSExportAll()
  4. case class JNumber(value: String) extends JValue with Product with Serializable

    Permalink

    JNumber is internally represented as a string, to improve performance

    JNumber is internally represented as a string, to improve performance

    Annotations
    @JSExportAll()
  5. trait JNumberConverter[T] extends AnyRef

    Permalink
  6. case class JObject(value: Array[JField] = js.Array()) extends JValue with Product with Serializable

    Permalink

    JObject is internally represented as a mutable Array, to improve sequential performance

    JObject is internally represented as a mutable Array, to improve sequential performance

    Annotations
    @JSExportAll()
  7. case class JString(value: String) extends JValue with Product with Serializable

    Permalink
    Annotations
    @JSExportAll()
  8. sealed abstract class JValue extends Serializable with Product

    Permalink

Value Members

  1. object JBoolean extends Serializable

    Permalink
  2. object JFalse extends JBoolean with Product with Serializable

    Permalink
    Annotations
    @JSExportAll()
  3. object JNull extends JValue with Product with Serializable

    Permalink
    Annotations
    @JSExportAll()
  4. object JNumber extends Serializable

    Permalink
  5. object JNumberConverter

    Permalink
  6. object JTrue extends JBoolean with Product with Serializable

    Permalink
    Annotations
    @JSExportAll()

Inherited from AnyRef

Inherited from Any

Ungrouped