case class HCons[H, T <: HList](head: H, tail: T) extends HList with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, HList, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HCons
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. HList
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HCons(head: H, tail: T)

Type Members

  1. type Plus[L <: HList] = HCons[H, T.Plus[L]]
    Definition Classes
    HConsHList

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +[A](a: A)(implicit f: Appender[HCons[H, T], HCons[A, HNil], Plus[HCons[A, HNil]]]): HCons[H, T.Plus[HCons[A, HNil]]]

    Append an element to this HList

    Append an element to this HList

    returns

    a new HList

  4. def ++[L2 <: HList](l2: L2)(implicit f: Appender[HCons[H, T], L2, Plus[L2]]): HCons[H, T.Plus[L2]]

    Append another HList to this HList

    Append another HList to this HList

    returns

    a new HList

  5. def ->[B](y: B): (HCons[H, T], B)
    Implicit
    This member is added by an implicit conversion from HCons[H, T] to ArrowAssoc[HCons[H, T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. def ::[A](a: A): HCons[A, HCons[H, T]]

    Append element at the beginning of this HList

    Append element at the beginning of this HList

    returns

    a new HList

    Definition Classes
    HConsHList
  7. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def apply[A](index: Int)(implicit arg0: ClassTag[A]): A

    Retrieve element at index

    Retrieve element at index

    returns

    element at index

    Definition Classes
    HConsHList
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  11. def ensuring(cond: (HCons[H, T]) ⇒ Boolean, msg: ⇒ Any): HCons[H, T]
    Implicit
    This member is added by an implicit conversion from HCons[H, T] to Ensuring[HCons[H, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (HCons[H, T]) ⇒ Boolean): HCons[H, T]
    Implicit
    This member is added by an implicit conversion from HCons[H, T] to Ensuring[HCons[H, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): HCons[H, T]
    Implicit
    This member is added by an implicit conversion from HCons[H, T] to Ensuring[HCons[H, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): HCons[H, T]
    Implicit
    This member is added by an implicit conversion from HCons[H, T] to Ensuring[HCons[H, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def filter(p: (Any) ⇒ Boolean): HList

    Filter this HList with a predicate

    Filter this HList with a predicate

    returns

    HNil

    Definition Classes
    HConsHList
  17. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def foldLeft[A](zero: A)(f: (A, Any) ⇒ A): A

    Applies a binary operator to a start value and all elements of this HList, going left to right.

    Applies a binary operator to a start value and all elements of this HList, going left to right.

    returns

    computed result

  19. def foreach(f: (Any) ⇒ Unit): Unit

    Executes f for each element of the HList

    Executes f for each element of the HList

    Definition Classes
    HList
  20. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from HCons[H, T] to StringFormat[HCons[H, T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. def get[A](index: Int)(implicit arg0: ClassTag[A]): Option[A]

    Retrieve element at index in an Option

    Retrieve element at index in an Option

    returns

    Option of element at index

    Definition Classes
    HConsHList
  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. val head: H
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. def map(f: (Any) ⇒ Any): HList

    Apply f to all elements of this HList

    Apply f to all elements of this HList

    returns

    a new HList

    Definition Classes
    HConsHList
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. val tail: T
  31. def toString: String
    Definition Classes
    HConsHList → AnyRef → Any
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  35. def [B](y: B): (HCons[H, T], B)
    Implicit
    This member is added by an implicit conversion from HCons[H, T] to ArrowAssoc[HCons[H, T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from HCons[H, T] to any2stringadd[HCons[H, T]] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (hCons: any2stringadd[HCons[H, T]]).+(other)
    Definition Classes
    any2stringadd

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from HList

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from HCons[H, T] to any2stringadd[HCons[H, T]]

Inherited by implicit conversion StringFormat from HCons[H, T] to StringFormat[HCons[H, T]]

Inherited by implicit conversion Ensuring from HCons[H, T] to Ensuring[HCons[H, T]]

Inherited by implicit conversion ArrowAssoc from HCons[H, T] to ArrowAssoc[HCons[H, T]]

Ungrouped