object hlist
- Alphabetic
- By Inheritance
- hlist
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- trait Align[L <: HList, M <: HList] extends (L) => M with Serializable
Type class supporting permuting this
HListinto the same order as anotherHListwith the same element types. - trait At[L <: HList, N <: Nat] extends DepFn1[L] with Serializable
Type class supporting access to the nth element of this
HList.Type class supporting access to the nth element of this
HList. Available only if thisHListhas at least n elements.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.At[${L}, ${N}]. You requested to access an element at the position ${N}, but the HList ${L} is too short.")
- trait Collect[I <: HList, P <: Poly] extends DepFn1[I] with Serializable
Type Class witnessing that an 'HList' can be collected with a 'Poly' to produce an 'HList'
- trait CollectFirst[L <: HList, P <: Poly] extends DepFn1[L] with Serializable
Type class witnessing that there exists at least one element of an
HListfor which aPolycan be applied. - trait Comapped[L <: HList, F[_]] extends Serializable
Type class witnessing that the result of stripping type constructor
Foff each element ofHListLisOut. - trait Combinations[N <: Nat, L <: HList] extends DepFn1[L] with Serializable
Type class supporting the calculation of every combination of this 'HList'
- trait ConstMapper[C, L <: HList] extends DepFn2[C, L] with Serializable
Type class supporting mapping a constant valued function over this
HList. - trait Diff[L <: HList, M <: HList] extends DepFn1[L] with Serializable
Type class supporting
HListsubtraction.Type class supporting
HListsubtraction. In case of duplicate types, this operation is a multiset difference. If typeTappears n times in thisHListand m < n times inM, the resultingHListcontains the last n - m elements of typeTin thisHList.Also available if
Mcontains types absent in thisHList. - trait Drop[L <: HList, N <: Nat] extends DepFn1[L] with Serializable
Type class supporting removal of the first n elements of this
HList.Type class supporting removal of the first n elements of this
HList. Available only if thisHListhas at least n elements.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.Drop[${L}, ${N}]. You requested to drop an element at the position ${N}, but the HList ${L} is too short.")
- trait Fill[N, A] extends DepFn1[A] with Serializable
Type class supporting producing a HList of shape
Nfilled with elements of typeA. - trait FillWith[F, L <: HList] extends DepFn0 with Serializable
Type class supporting producing a HList filled from a Poly0.
- trait Filter[L <: HList, U] extends DepFn1[L] with Serializable
Type class supporting access to the all elements of this
HListof typeU. - trait FilterNot[L <: HList, U] extends DepFn1[L] with Serializable
Type class supporting access to the all elements of this
HListof type different thanU. - trait FlatMapInterleave[A, M <: HList] extends DepFn2[A, M] with Serializable
Type class supporting interleaving an element into each row of this HMatrix (HList of HLists)
- trait FlatMapper[HF, In <: HList] extends DepFn1[In] with Serializable
Type class supporting flatmapping a higher ranked function over this
HList. - trait Grouper[L <: HList, N <: Nat, Step <: Nat] extends DepFn1[L] with Serializable
Typeclass supporting grouping this
HListinto tuples ofNitems each, atStepapart.Typeclass supporting grouping this
HListinto tuples ofNitems each, atStepapart. IfStepequalsNthen the groups do not overlap. - final case class HConsHKernel[H, T <: HKernel](tail: T) extends HKernel with Product with Serializable
- trait HKernel extends AnyRef
Type class providing minimally witnessed operations on
HLists which can be derived fromLby wrapping each of its elements in a type constructor. - trait HKernelAux[L <: HList] extends DepFn0
- trait HNilHKernel extends HKernel
- trait Init[L <: HList] extends DepFn1[L] with Serializable
Type class supporting access to all but the last element of this
HList.Type class supporting access to all but the last element of this
HList. Available only if thisHListhas at least one element.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.Init[${L}]. {L} is empty, so there is no first element.")
- trait Interleave[A, L <: HList] extends DepFn2[A, L] with Serializable
Type class supporting adding an element to each possible position in this HList
- trait Intersection[L <: HList, M <: HList] extends DepFn1[L] with Serializable
Type class supporting
HListintersection.Type class supporting
HListintersection. In case of duplicate types, this operation is a multiset intersection. If typeTappears n times in thisHListand m < n times inM, the resultingHListcontains the first m elements of typeTin thisHList.Also available if
Mcontains types absent in thisHList. - trait IsHCons[L <: HList] extends Serializable
Type class witnessing that this
HListis composite and providing access to head and tail. - trait Last[L <: HList] extends DepFn1[L] with Serializable
Type class supporting access to the last element of this
HList.Type class supporting access to the last element of this
HList. Available only if thisHListhas at least one element.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.Last[${L}]. ${L} is empty, so there is no last element.")
- trait LeftFolder[L <: HList, In, HF] extends DepFn2[L, In] with Serializable
Type class supporting left-folding a polymorphic binary function over this
HList. - trait LeftReducer[L <: HList, HF] extends DepFn1[L] with Serializable
Type class supporting left-reducing a polymorphic binary function over this
HList. - trait LeftScanner[L <: HList, In, P <: Poly] extends DepFn2[L, In] with Serializable
Type class supporting left scanning of this
HListwith a binary polymorphic function. - trait Length[L <: HList] extends DepFn0 with Serializable
Type class supporting computing the type-level Nat corresponding to the length of this
HList. - sealed trait LiftAll[F[_], In <: HList] extends AnyRef
Typeclass witnessing that all the elements of an HList have instances of the given typeclass.
Typeclass witnessing that all the elements of an HList have instances of the given typeclass. Courtesy of mpilquist.
- trait LowPriorityCollect extends AnyRef
- trait LowPriorityCollectFirst extends AnyRef
- trait LowPriorityComapped extends AnyRef
- trait LowPriorityCombinations extends AnyRef
- trait LowPriorityDiff extends AnyRef
- trait LowPriorityGrouper extends AnyRef
- trait LowPriorityIntersection extends AnyRef
- trait LowPriorityMapped extends AnyRef
- trait LowPriorityPaddedGrouper extends AnyRef
Typeclass supporting grouping this
HListinto tuples ofNitems each, atStepapart.Typeclass supporting grouping this
HListinto tuples ofNitems each, atStepapart. IfStepequalsNthen the groups do not overlap.Use elements in
padas necessary to complete last group up tonitems. - trait LowPriorityPrepend extends LowestPriorityPrepend
- trait LowPriorityRemove extends AnyRef
- trait LowPriorityReversePrepend extends AnyRef
- trait LowPriorityRotateLeft extends AnyRef
- trait LowPriorityRotateRight extends AnyRef
- trait LowPriorityToCoproductTraversable extends AnyRef
- trait LowPriorityUnion extends AnyRef
- trait LowPriorityZipOne extends AnyRef
- trait LowestPriorityPrepend extends AnyRef
- trait MapCons[A, M <: HList] extends DepFn2[A, M] with Serializable
- trait MapFolder[L <: HList, R, HF] extends Serializable
Type class supporting mapping a polymorphic function over this
HListand then folding the result using a monomorphic function value. - trait Mapped[L <: HList, F[_]] extends Serializable
Type class witnessing that the result of wrapping each element of
HListLin type constructorFisOut. - trait Mapper[HF, In <: HList] extends DepFn1[In] with Serializable
Type class supporting mapping a higher ranked function over this
HList. - trait Modifier[L <: HList, U, V] extends DepFn2[L, (U) => V] with Serializable
Type class supporting replacement of the first element of type U from this
HListwith the result of its transformation via a given function into a new element of type V.Type class supporting replacement of the first element of type U from this
HListwith the result of its transformation via a given function into a new element of type V. Available only if thisHListcontains an element of typeU.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.Modifier[${L}, ${U}, ${V}]. You requested to modify an element of the type ${U}, but there is none in HList ${L}.")
- trait ModifierAt[L <: HList, N <: Nat, U, V] extends DepFn2[L, (U) => V]
Type class supporting replacement of the
Nth element of thisHListwith the result of callingFon it.Type class supporting replacement of the
Nth element of thisHListwith the result of callingFon it. Available only if thisHListcontains at leastNelements. - trait NatTRel[L1 <: HList, F1[_], L2 <: HList, F2[_]] extends Serializable
Type class witnessing that
HListsL1andL2have elements of the formF1[Ln]andF2[Ln]respectively for all indicesn.Type class witnessing that
HListsL1andL2have elements of the formF1[Ln]andF2[Ln]respectively for all indicesn. This implies that a natural transformF1 ~> F2will take a list of typeL1onto a list of typeL2. - trait PadTo[N, A, L <: HList] extends DepFn2[A, L] with Serializable
Type class supporting producing a HList of shape
Npadded with elements of typeA. - trait PaddedGrouper[L <: HList, N <: Nat, Step <: Nat, Pad <: HList] extends DepFn2[L, Pad] with Serializable
- trait Partition[L <: HList, U] extends DepFn1[L] with Serializable
Type class supporting partitioning this
HListinto those elements of typeUand the remainder - trait Patcher[N <: Nat, M <: Nat, L <: HList, In <: HList] extends DepFn2[L, In] with Serializable
Type class supporting the patching of an
HList - trait Permutations[L <: HList] extends DepFn1[L] with Serializable
Type class supporting the calculation of every permutation of this 'HList'
- trait Prepend[P <: HList, S <: HList] extends DepFn2[P, S] with Serializable
Type class supporting prepending to this
HList. - trait Reify[L <: HList] extends DepFn0 with Serializable
Type class supporting reifying an
HListof singleton types. - trait Remove[L <: HList, E] extends DepFn1[L] with Serializable
Type class supporting removal of an element from this
HList.Type class supporting removal of an element from this
HList. Available only if thisHListcontains an element of typeE.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.Remove[${L}, ${E}]. You requested to remove an element of type ${E}, but there is no unique candidate in the HList ${L}.")
- trait RemoveAll[L <: HList, SL <: HList] extends DepFn1[L] with Serializable
Type class supporting removal of a sublist from this
HList.Type class supporting removal of a sublist from this
HList. Available only if thisHListcontains a sublist of typeSL.The elements of
SLdo not have to be contiguous in thisHList.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.RemoveAll[${L}, ${SL}]. You requested to remove elements of the types ${SL}, but not all were found in HList ${L}.")
- trait Repeat[L <: HList, N <: Nat] extends DepFn1[L] with Serializable
Typeclass supporting repeating L-typed HLists N times.
Typeclass supporting repeating L-typed HLists N times.
Repeat[Int :: String :: HNil, Nat._2] => Int :: String :: Int :: String :: HNil
- trait ReplaceAt[L <: HList, N <: Nat, V] extends DepFn2[L, V] with Serializable
Type class supporting replacement of the Nth element of this
HListwith an element of type V.Type class supporting replacement of the Nth element of this
HListwith an element of type V. Available only if thisHListcontains at least N elements.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.ReplaceAt[${L}, ${N}, ${V}]. You requested to modify an element at the position ${N}, but the HList ${L} is too short.")
- trait Replacer[L <: HList, U, V] extends DepFn2[L, V] with Serializable
Type class supporting replacement of the first element of type U from this
HListwith an element of type V.Type class supporting replacement of the first element of type U from this
HListwith an element of type V. Available only if thisHListcontains an element of typeU.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.Replacer[${L}, ${U}, ${V}]. You requested to replace an element of the type ${U}, but there is none in HList ${L}.")
- trait Reverse[L <: HList] extends DepFn1[L] with Serializable
Type class supporting reversing this
HList. - trait ReversePrepend[P <: HList, S <: HList] extends DepFn2[P, S] with Serializable
Type class supporting reverse prepending to this
HList. - trait ReverseSplit[L <: HList, N <: Nat] extends DepFn1[L] with Serializable
Type class supporting splitting this
HListat the nth element returning the reverse prefix and suffix as a pair.Type class supporting splitting this
HListat the nth element returning the reverse prefix and suffix as a pair. Available only if thisHListhas at least n elements.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.ReverseSplit[${L}, ${N}]. You requested to split at position ${N}, but the HList ${L} is too short.")
- trait ReverseSplitLeft[L <: HList, U] extends DepFn1[L] with Serializable
Type class supporting splitting this
HListat the first occurrence of an element of typeUreturning the reverse prefix and suffix as a pair.Type class supporting splitting this
HListat the first occurrence of an element of typeUreturning the reverse prefix and suffix as a pair. Available only if thisHListcontains an element of typeU.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.ReverseSplitLeft[${L}, ${U}]. You requested to split at an element of type ${U}, but there is none in the HList ${L}.")
- trait ReverseSplitRight[L <: HList, U] extends DepFn1[L] with Serializable
Type class supporting splitting this
HListat the last occurrence of an element of typeUreturning the reverse prefix and suffix as a pair.Type class supporting splitting this
HListat the last occurrence of an element of typeUreturning the reverse prefix and suffix as a pair. Available only if thisHListcontains an element of typeU.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.ReverseSplitRight[${L}, ${U}]. You requested to split at an element of type ${U}, but there is none in the HList ${L}.")
- trait RightFolder[L <: HList, In, HF] extends DepFn2[L, In] with Serializable
Type class supporting right-folding a polymorphic binary function over this
HList. - trait RightReducer[L <: HList, HF] extends DepFn1[L] with Serializable
Type class supporting right-reducing a polymorphic binary function over this
HList. - trait RightScanner[L <: HList, In, P <: Poly] extends DepFn2[L, In] with Serializable
Type class supporting right scanning of this
HListwith a binary polymorphic function. - trait RotateLeft[L <: HList, N <: Nat] extends DepFn1[L] with Serializable
Type class supporting rotating a HList left
- trait RotateRight[L <: HList, N <: Nat] extends DepFn1[L] with Serializable
Type class supporting rotating a HList right
- trait SelectAll[L <: HList, S <: HList] extends DepFn1[L] with Serializable
Type class supporting multiple HList field selection.
Type class supporting multiple HList field selection. Can be used to witness that given HList contains certain set of field types. Simplified version of shapeless.ops.record.SelectAll
- Annotations
- @implicitNotFound("Field types set of ${S} is not fully contained in type definition of ${L}")
- trait SelectMany[L <: HList, Ids <: HList] extends DepFn1[L]
Type class supporting access to the elements of this
HListspecified byIds.Type class supporting access to the elements of this
HListspecified byIds. Available only if thisHListcontains all elements specified inIds.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.SelectMany[${L}, ${Ids}]. You requested the elements in ${Ids}, but HList ${L} does not contain all of them.")
- trait SelectRange[L <: HList, A <: Nat, B <: Nat] extends DepFn1[L]
Type class supporting supporting access to the elements in range [a,b[ of this
HList.Type class supporting supporting access to the elements in range [a,b[ of this
HList. Avaialable only if thisHListcontains all elements in range- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.SelectRange[${L}, ${A}, ${B}]. You requested the elements in range [${A},${B}[, but HList ${L} does not contain all of them.")
- trait Selector[L <: HList, U] extends DepFn1[L] with Serializable
Type class supporting access to the first element of this
HListof typeU.Type class supporting access to the first element of this
HListof typeU. Available only if thisHListcontains an element of typeU.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.Selector[${L}, ${U}]. You requested an element of type ${U}, but there is none in the HList ${L}.")
- trait Slice[N, U, L <: HList] extends DepFn1[L] with Serializable
Type class supporting the slicing of an
HList - trait Split[L <: HList, N <: Nat] extends DepFn1[L] with Serializable
Type class supporting splitting this
HListat the nth element returning the prefix and suffix as a pair.Type class supporting splitting this
HListat the nth element returning the prefix and suffix as a pair. Available only if thisHListhas at least n elements.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.Split[${L}, ${N}]. You requested to split at position ${N}, but the HList ${L} is too short.")
- trait SplitLeft[L <: HList, U] extends DepFn1[L] with Serializable
Type class supporting splitting this
HListat the first occurrence of an element of typeUreturning the prefix and suffix as a pair.Type class supporting splitting this
HListat the first occurrence of an element of typeUreturning the prefix and suffix as a pair. Available only if thisHListcontains an element of typeU.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.SplitLeft[${L}, ${U}]. You requested to split at an element of type ${U}, but there is none in the HList ${L}.")
- trait SplitRight[L <: HList, U] extends DepFn1[L] with Serializable
Type class supporting splitting this
HListat the last occurrence of an element of typeUreturning the prefix and suffix as a pair.Type class supporting splitting this
HListat the last occurrence of an element of typeUreturning the prefix and suffix as a pair. Available only if thisHListcontains an element of typeU.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.SplitRight[${L}, ${U}]. You requested to split at an element of type ${U}, but there is none in the HList ${L}.")
- trait SubtypeUnifier[L <: HList, B] extends DepFn1[L] with Serializable
Type class supporting unification of all elements that are subtypes of
Bin thisHListtoB, with all other elements left unchanged. - trait Take[L <: HList, N <: Nat] extends DepFn1[L] with Serializable
Type class supporting retrieval of the first n elements of this
HList.Type class supporting retrieval of the first n elements of this
HList. Available only if thisHListhas at least n elements.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.Take[${L}, ${N}]. You requested to take ${N} elements, but the HList ${L} is too short.")
- type ToArray[L <: HList, Lub] = ToTraversable[L, Array] { type Lub = Lub }
Type aliases and constructors provided for backward compatibility
- trait ToCoproduct[L <: HList] extends Serializable
Type class computing the coproduct type corresponding to this
HList. - trait ToCoproductTraversable[L <: HList, M[_]] extends DepFn1[L] with Serializable
Type class supporting conversion of this
HListto aMwith elements typed as a minimalCoproductCop such as each type of the elements of L appears once in Cop. - type ToList[L <: HList, Lub] = ToTraversable[L, List] { type Lub = Lub }
- trait ToSized[L <: HList, M[_]] extends DepFn1[L] with Serializable
Type class supporting conversion of this
HListto aSized[M[Lub], N]with elements typed as the least upper bound Lub of the types of the elements of thisHList.Type class supporting conversion of this
HListto aSized[M[Lub], N]with elements typed as the least upper bound Lub of the types of the elements of thisHList.About serializability, see the comment in
ToTraversable. - trait ToSum[L <: HList] extends Serializable
- trait ToTraversable[L <: HList, M[_]] extends DepFn1[L] with Serializable
Type class supporting conversion of this
HListto aMwith elements typed as the least upper bound Lub of the types of the elements of thisHList.Type class supporting conversion of this
HListto aMwith elements typed as the least upper bound Lub of the types of the elements of thisHList.Serializable if the
Factorys it implicitly finds are too. Note that theFactorys from the standard library are *not* serializable. See the tests for how to make your own serializableFactoryavailable toToTraversable. - trait Transposer[L <: HList] extends DepFn1[L] with Serializable
Type class supporting transposing this
HList. - trait Tupler[L <: HList] extends DepFn1[L] with Serializable
Type class supporting conversion of this
HListto a tuple. - trait Unifier[L <: HList] extends DepFn1[L] with Serializable
Type class supporting unification of this
HList. - trait Union[L <: HList, M <: HList] extends DepFn2[L, M] with Serializable
Type class supporting
HListunion.Type class supporting
HListunion. In case of duplicate types, this operation is a order-preserving multi-set union. If typeTappears n times in thisHListand m > n times inM, the resultingHListcontains the first n elements of typeTin thisHList, followed by the last m - n element of typeTinM. - trait Unzip[L <: HList] extends DepFn1[L] with Serializable
Type class supporting unzipping this
HListof tuples returning a tuple ofHLists. - trait Zip[L <: HList] extends DepFn1[L] with Serializable
Type class supporting zipping this
HListofHLists returning anHListof tuples. - trait ZipApply[FL <: HList, AL <: HList] extends DepFn2[FL, AL] with Serializable
Type class supporting zipping this
HListof monomorphic function values with its argumentHListof correspondingly typed function arguments returning the result of each application as anHList.Type class supporting zipping this
HListof monomorphic function values with its argumentHListof correspondingly typed function arguments returning the result of each application as anHList. Available only if there is evidence that the corresponding function and argument elements have compatible types.- Annotations
- @implicitNotFound("Implicit not found: shapeless.Ops.ZipApply[${FL}, ${AL}]. The types of ${FL} and ${AL} are not compatible.")
- trait ZipConst[C, L <: HList] extends DepFn2[C, L] with Serializable
Type class supporting zipping an
HListwith a constant, resulting in anHListof tuples of the form ({element from inputHList}, {supplied constant}) - trait ZipOne[H <: HList, T <: HList] extends DepFn2[H, T] with Serializable
Type class supporting zipping this
HListwith anHListofHLists returning anHListofHLists with each element of thisHListprepended to the correspondingHListelement of the argumentHList. - trait ZipWith[L <: HList, R <: HList, P <: Poly2] extends DepFn2[L, R] with Serializable
Type class supporting zipping an 'HList' with another 'HList' using a 'Poly2' resulting in an HList
- trait ZipWithIndex[L <: HList] extends DepFn1[L] with Serializable
Type class supporting zipping a
HListwith its element indices, resulting in a 'HList' of tuples of the form ({element from input tuple}, {element index}) - trait ZipWithKeys[K <: HList, V <: HList] extends DepFn1[V] with Serializable
Type class supporting zipping an
HListof values with anHListof keys to create a record. - trait lowPriorityToSum extends AnyRef
Type class computing the sum type corresponding to this
HList.
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 ToArray[L <: HList, Lub](implicit toArray: ToArray[L, Lub]): ToArray[L, Lub]
- def ToList[L <: HList, Lub](implicit toList: ToList[L, Lub]): ToList[L, Lub]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- implicit def hlistOrdering[H, T <: HList](implicit hOrdering: Ordering[H], tOrdering: Ordering[T]): Ordering[::[H, T]]
- 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()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object Align extends Serializable
- object At extends Serializable
- object Collect extends LowPriorityCollect with Serializable
- object CollectFirst extends LowPriorityCollectFirst with Serializable
- object Comapped extends LowPriorityComapped with Serializable
- object Combinations extends LowPriorityCombinations with Serializable
- object ConstMapper extends Serializable
- object Diff extends LowPriorityDiff with Serializable
- object Drop extends Serializable
- object Fill extends Serializable
- object FillWith extends Serializable
- object Filter extends Serializable
- object FilterNot extends Serializable
- object FlatMapInterleave extends Serializable
- object FlatMapper extends Serializable
- object Grouper extends LowPriorityGrouper with Serializable
- object HKernel
- object HKernelAux
- object HNilHKernel extends HNilHKernel with Product with Serializable
- object Init extends Serializable
- object Interleave extends Serializable
- object Intersection extends LowPriorityIntersection with Serializable
- object IsHCons extends Serializable
- object Last extends Serializable
- object LeftFolder extends Serializable
- object LeftReducer extends Serializable
- object LeftScanner extends Serializable
- object Length extends Serializable
- object LiftAll
- object MapCons extends Serializable
- object MapFolder extends Serializable
- object Mapped extends LowPriorityMapped with Serializable
- object Mapper extends Serializable
- object Modifier extends Serializable
- object ModifierAt
- object NatTRel extends Serializable
- object PadTo extends Serializable
- object PaddedGrouper extends LowPriorityPaddedGrouper with Serializable
- object Partition extends Serializable
- object Patcher extends Serializable
- object Permutations extends Serializable
- object Prepend extends LowPriorityPrepend with Serializable
- object Reify extends Serializable
- object Remove extends LowPriorityRemove with Serializable
- object RemoveAll extends Serializable
- object Repeat extends Serializable
- object ReplaceAt extends Serializable
- object Replacer extends Serializable
- object Reverse extends Serializable
- object ReversePrepend extends LowPriorityReversePrepend with Serializable
- object ReverseSplit extends Serializable
- object ReverseSplitLeft extends Serializable
- object ReverseSplitRight extends Serializable
- object RightFolder extends Serializable
- object RightReducer extends Serializable
- object RightScanner extends Serializable
- object RotateLeft extends LowPriorityRotateLeft with Serializable
- object RotateRight extends LowPriorityRotateRight with Serializable
- object SelectAll extends Serializable
- object SelectMany
- object SelectRange
- object Selector extends Serializable
- object Slice extends Serializable
- object Split extends Serializable
- object SplitLeft extends Serializable
- object SplitRight extends Serializable
- object SubtypeUnifier extends Serializable
- object Take extends Serializable
- object ToCoproduct extends Serializable
- object ToCoproductTraversable extends LowPriorityToCoproductTraversable with Serializable
- object ToSized extends Serializable
- object ToSum extends lowPriorityToSum with Serializable
- object ToTraversable extends Serializable
- object Transposer extends Serializable
- object Tupler extends TuplerInstances with Serializable
- object Unifier extends Serializable
- object Union extends LowPriorityUnion with Serializable
- object Unzip extends Serializable
- object Zip extends Serializable
- object ZipApply extends Serializable
- object ZipConst extends Serializable
- object ZipOne extends LowPriorityZipOne with Serializable
- object ZipWith extends Serializable
- object ZipWithIndex extends Serializable
- object ZipWithKeys extends Serializable
- implicit object hnilOrdering extends Ordering[HNil]