JsonF

object JsonF
Companion:
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any
JsonF.type

Type members

Classlikes

final case class Arr[A](values: List[A]) extends JsonF[A]
case object False extends JsonF[Nothing]
case object Null extends JsonF[Nothing]
final case class NumDouble(value: Double) extends JsonF[Nothing]
final case class NumLong(value: Long) extends JsonF[Nothing]
final case class Obj[A](fields: List[(String, A)]) extends JsonF[A]
final case class Str(value: String) extends JsonF[Nothing]
case object True extends JsonF[Nothing]

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from:
Mirror

Implicits

Implicits

implicit val traverse: Traverse[JsonF]