Class HList.HCons<E, L extends HList<L>>
The nonempty list
-
Nested Class Summary
Nested classes/interfaces inherited from class HList
HList.Apply<F$,A, R>, HList.HAppend<A, B, C>, HList.HCons<E, L>, HList.HFoldr<G, V, L, R>, HList.HNil -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<X> HList.HCons<X, HList.HCons<E, L>> extend(X e) Extends (cons) this list by prepending the given element, returning a new list.<X> HList.Apply<Unit, P2<X, HList.HCons<E, L>>, HList.HCons<X, HList.HCons<E, L>>> extender()head()tail()
-
Field Details
-
e
-
l
-
-
Constructor Details
-
HCons
-
-
Method Details
-
head
-
tail
-
extender
-
extend
Description copied from class:HListExtends (cons) this list by prepending the given element, returning a new list.
-