Packages

trait Jsony[Json] extends Eq[Json] with Show[Json]

Type-class that describes what is needed for an object to be able to be diffed as a json like object.

Linear Supertypes
Show[Json], ContravariantShow[Json], Eq[Json], Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Jsony
  2. Show
  3. ContravariantShow
  4. Eq
  5. Serializable
  6. AnyRef
  7. Any
Implicitly
  1. by PatchOps
  2. by DiffOps
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def Null: Json
  2. abstract def array(json: Json): Option[Vector[Json]]
  3. abstract def eqv(x: Json, y: Json): Boolean
    Definition Classes
    Eq
  4. abstract def fields(json: Json): Option[Map[String, Json]]
  5. abstract def makeArray(values: Vector[Json]): Json
  6. abstract def makeObject(fields: Map[String, Json]): Json
  7. abstract def show(t: Json): String
    Definition Classes
    ContravariantShow

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Jsony[Json] toany2stringadd[Jsony[Json]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Jsony[Json], B)
    Implicit
    This member is added by an implicit conversion from Jsony[Json] toArrowAssoc[Jsony[Json]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def apply[F[_], Json](json: Json)(implicit P: Patch[F, Json, Jsony[Json]]): F[Json]
    Implicit
    This member is added by an implicit conversion from Jsony[Json] toPatchOps[Jsony[Json]] performed by method PatchOps in diffson.
    Definition Classes
    PatchOps
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. def diff[P](that: Jsony[Json])(implicit Diff: Diff[Jsony[Json], P]): P
    Implicit
    This member is added by an implicit conversion from Jsony[Json] toDiffOps[Jsony[Json]] performed by method DiffOps in diffson.
    Definition Classes
    DiffOps
  10. def ensuring(cond: (Jsony[Json]) => Boolean, msg: => Any): Jsony[Json]
    Implicit
    This member is added by an implicit conversion from Jsony[Json] toEnsuring[Jsony[Json]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (Jsony[Json]) => Boolean): Jsony[Json]
    Implicit
    This member is added by an implicit conversion from Jsony[Json] toEnsuring[Jsony[Json]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: => Any): Jsony[Json]
    Implicit
    This member is added by an implicit conversion from Jsony[Json] toEnsuring[Jsony[Json]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): Jsony[Json]
    Implicit
    This member is added by an implicit conversion from Jsony[Json] toEnsuring[Jsony[Json]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Jsony[Json] toStringFormat[Jsony[Json]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. val json: Jsony[Json]
    Implicit
    This member is added by an implicit conversion from Jsony[Json] toDiffOps[Jsony[Json]] performed by method DiffOps in diffson.
    Definition Classes
    DiffOps
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def neqv(x: Json, y: Json): Boolean
    Definition Classes
    Eq
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. val patch: Jsony[Json]
    Implicit
    This member is added by an implicit conversion from Jsony[Json] toPatchOps[Jsony[Json]] performed by method PatchOps in diffson.
    Definition Classes
    PatchOps
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  2. def [B](y: B): (Jsony[Json], B)
    Implicit
    This member is added by an implicit conversion from Jsony[Json] toArrowAssoc[Jsony[Json]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Show[Json]

Inherited from ContravariantShow[Json]

Inherited from Eq[Json]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion PatchOps fromJsony[Json] to PatchOps[Jsony[Json]]

Inherited by implicit conversion DiffOps fromJsony[Json] to DiffOps[Jsony[Json]]

Inherited by implicit conversion any2stringadd fromJsony[Json] to any2stringadd[Jsony[Json]]

Inherited by implicit conversion StringFormat fromJsony[Json] to StringFormat[Jsony[Json]]

Inherited by implicit conversion Ensuring fromJsony[Json] to Ensuring[Jsony[Json]]

Inherited by implicit conversion ArrowAssoc fromJsony[Json] to ArrowAssoc[Jsony[Json]]

Ungrouped