Packages

object Repr

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Repr
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Boolean(value: scala.Boolean) extends Repr with Product with Serializable

    A structured representation of a Boolean value.

  2. final case class Byte(value: scala.Byte) extends Repr with Product with Serializable

    A structured representation of a Byte value.

  3. final case class Char(value: scala.Char) extends Repr with Product with Serializable

    A structured representation of a Char value.

  4. final case class Constructor(namespace: List[java.lang.String], name: java.lang.String, reprs: ListMap[java.lang.String, Repr]) extends Repr with Product with Serializable

    A structured representation of a class constructor including the names of each field and their values.

  5. final case class Double(value: scala.Double) extends Repr with Product with Serializable

    A structured representation of a Double value.

  6. final case class Float(value: scala.Float) extends Repr with Product with Serializable

    A structured representation of a Float value.

  7. final case class Int(value: scala.Int) extends Repr with Product with Serializable

    A structured representation of an Int value.

  8. final case class KeyValue(key: Repr, value: Repr) extends Repr with Product with Serializable

    A structured representation of a key value pair, as might exist in a Map.

  9. final case class Long(value: scala.Long) extends Repr with Product with Serializable

    A structured representation of a Long value.

  10. final case class Object(namespace: List[java.lang.String], name: java.lang.String) extends Repr with Product with Serializable

    A structured representation of a static object.

  11. final case class Short(value: scala.Short) extends Repr with Product with Serializable

    A structured representation of a Short value.

  12. final case class String(value: java.lang.String) extends Repr with Product with Serializable

    A structured representation of a String value.

  13. final case class VConstructor(namespace: List[java.lang.String], name: java.lang.String, reprs: List[Repr]) extends Repr with Product with Serializable

    A structured representation of a class constructor including the values of each field.

Value Members

  1. implicit def deriveRepr[A](a: A)(implicit debug: Debug[A]): Repr

    Provides an implicit conversion from a value of a data type to a structured representation of that value given a Debug instance.

    Provides an implicit conversion from a value of a data type to a structured representation of that value given a Debug instance. Used to support the string interpolation functionality.

  2. object Constructor extends Serializable