object HList extends Dynamic with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- HList
- Serializable
- Serializable
- Dynamic
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- final class FillWithOps[L <: HList] extends AnyRef
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply[P <: Product, L <: HList](p: P)(implicit gen: Aux[P, L]): L
- def apply[T](t: T): ::[T, HNil]
- def apply(): HNil.type
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
fill[A](n1: Nat, n2: Nat)(elem: A)(implicit fill: Fill[(N, N), A]): Out
Produces a
N1
-length HList made ofN2
-length HLists filled withelem
. -
def
fill[A](n: Nat)(elem: A)(implicit fill: Fill[N, A]): Out
Produces a HList of length
N
filled withelem
. -
def
fillWith[L <: HList](f: Poly): L
[use case]
[use case] Full Signaturedef fillWith[L <: HList]: FillWithOps[L]
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- implicit def hlistOps[L <: HList](l: L): HListOps[L]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
macro
def
selectDynamic(tpeSelector: String): Any
Allows to specify an
HList
type with a syntax similar toRecord
andUnion
, as follows,Allows to specify an
HList
type with a syntax similar toRecord
andUnion
, as follows,type ISB = HList.`Int, String, Boolean`.T
Literal types are allowed, so that the following is valid,
type ABC = HList.`'a, 'b, 'c`.T type TwoTrueStr = HList.`2, true, "str"`.T
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
unsafeGet(l: HList, i: Int): Any
- Annotations
- @tailrec()
- def unsafePrepend(l: HList, m: HList): HList
- def unsafeRemove(l: HList, i: Int): (Any, HList)
- def unsafeReverse(l: HList): HList
- def unsafeReversePrepend(l: HList, m: HList): HList
- def unsafeUpdateAppend(l: HList, i: Int, e: Any): HList
- def unsafeUpdateAt(l: HList, i: Int, e: Any): HList
- def unsafeUpdateWith(l: HList, i: Int, f: (Any) ⇒ Any): HList
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
object
ListCompat
Convenience aliases for HList :: and List :: allowing them to be used together within match expressions.