Object

shapeless.ops

hlist

Related Doc: package ops

Permalink

object hlist

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

Type Members

  1. trait Align[L <: HList, M <: HList] extends (L) ⇒ M with Serializable

    Permalink

    Type class supporting permuting this HList into the same order as another HList with the same element types.

  2. trait At[L <: HList, N <: Nat] extends DepFn1[L] with Serializable

    Permalink

    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 this HList has at least n elements.

    Annotations
    @implicitNotFound( ... )
  3. trait Collect[I <: HList, P <: Poly] extends DepFn1[I] with Serializable

    Permalink

    Type Class witnessing that an 'HList' can be collected with a 'Poly' to produce an 'HList'

  4. trait CollectFirst[L <: HList, P <: Poly] extends DepFn1[L] with Serializable

    Permalink

    Type class witnessing that there exists at least one element of an HList for which a Poly can be applied.

  5. trait Comapped[L <: HList, F[_]] extends Serializable

    Permalink

    Type class witnessing that the result of stripping type constructor F off each element of HList L is Out.

  6. trait Combinations[N <: Nat, L <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting the calculation of every combination of this 'HList'

  7. trait ConstMapper[C, L <: HList] extends DepFn2[C, L] with Serializable

    Permalink

    Type class supporting mapping a constant valued function over this HList.

  8. trait Diff[L <: HList, M <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting HList subtraction.

    Type class supporting HList subtraction. In case of duplicate types, this operation is a multiset difference. If type T appears n times in this HList and m < n times in M, the resulting HList contains the last n - m elements of type T in this HList.

    Also available if M contains types absent in this HList.

  9. trait Drop[L <: HList, N <: Nat] extends DepFn1[L] with Serializable

    Permalink

    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 this HList has at least n elements.

    Annotations
    @implicitNotFound( ... )
  10. trait Fill[N, A] extends DepFn1[A] with Serializable

    Permalink

    Type class supporting producing a HList of shape N filled with elements of type A.

  11. trait FillWith[F, L <: HList] extends DepFn0 with Serializable

    Permalink

    Type class supporting producing a HList filled from a Poly0.

  12. trait Filter[L <: HList, U] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting access to the all elements of this HList of type U.

  13. trait FilterNot[L <: HList, U] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting access to the all elements of this HList of type different than U.

  14. trait FlatMapInterleave[A, M <: HList] extends DepFn2[A, M] with Serializable

    Permalink

    Type class supporting interleaving an element into each row of this HMatrix (HList of HLists)

  15. trait FlatMapper[HF, In <: HList] extends DepFn1[In] with Serializable

    Permalink

    Type class supporting flatmapping a higher ranked function over this HList.

  16. trait Grouper[L <: HList, N <: Nat, Step <: Nat] extends DepFn1[L] with Serializable

    Permalink

    Typeclass supporting grouping this HList into tuples of N items each, at Step apart.

    Typeclass supporting grouping this HList into tuples of N items each, at Step apart. If Step equals N then the groups do not overlap.

  17. final case class HConsHKernel[H, T <: HKernel](tail: T) extends HKernel with Product with Serializable

    Permalink
  18. trait HKernel extends AnyRef

    Permalink

    Type class providing minimally witnessed operations on HLists which can be derived from L by wrapping each of its elements in a type constructor.

  19. trait HKernelAux[L <: HList] extends DepFn0

    Permalink
  20. sealed trait HListToProduct[HL <: HList] extends DepFn1[HL] with Serializable

    Permalink

    Type class supporting mappings from an HList to a nested pair

  21. trait HNilHKernel extends HKernel

    Permalink
  22. trait Init[L <: HList] extends DepFn1[L] with Serializable

    Permalink

    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 this HList has at least one element.

    Annotations
    @implicitNotFound( ... )
  23. trait Interleave[A, L <: HList] extends DepFn2[A, L] with Serializable

    Permalink

    Type class supporting adding an element to each possible position in this HList

  24. trait Intersection[L <: HList, M <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting HList intersection.

    Type class supporting HList intersection. In case of duplicate types, this operation is a multiset intersection. If type T appears n times in this HList and m < n times in M, the resulting HList contains the first m elements of type T in this HList.

    Also available if M contains types absent in this HList.

  25. trait IsHCons[L <: HList] extends Serializable

    Permalink

    Type class witnessing that this HList is composite and providing access to head and tail.

  26. trait Last[L <: HList] extends DepFn1[L] with Serializable

    Permalink

    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 this HList has at least one element.

    Annotations
    @implicitNotFound( ... )
  27. trait LeftFolder[L <: HList, In, HF] extends DepFn2[L, In] with Serializable

    Permalink

    Type class supporting left-folding a polymorphic binary function over this HList.

  28. trait LeftReducer[L <: HList, HF] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting left-reducing a polymorphic binary function over this HList.

  29. trait LeftScanner[L <: HList, In, P <: Poly] extends DepFn2[L, In] with Serializable

    Permalink

    Type class supporting left scanning of this HList with a binary polymorphic function.

  30. trait Length[L <: HList] extends DepFn0 with Serializable

    Permalink

    Type class supporting computing the type-level Nat corresponding to the length of this HList.

  31. sealed trait LiftAll[F[_], In <: HList] extends AnyRef

    Permalink

    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.

  32. trait LowPriorityCollect extends AnyRef

    Permalink
  33. trait LowPriorityCollectFirst extends AnyRef

    Permalink
  34. trait LowPriorityComapped extends AnyRef

    Permalink
  35. trait LowPriorityCombinations extends AnyRef

    Permalink
  36. trait LowPriorityDiff extends AnyRef

    Permalink
  37. trait LowPriorityGrouper extends AnyRef

    Permalink
  38. trait LowPriorityMapped extends AnyRef

    Permalink
  39. trait LowPriorityPaddedGrouper extends AnyRef

    Permalink

    Typeclass supporting grouping this HList into tuples of N items each, at Step apart.

    Typeclass supporting grouping this HList into tuples of N items each, at Step apart. If Step equals N then the groups do not overlap.

    Use elements in pad as necessary to complete last group up to n items.

  40. trait LowPriorityPrepend extends LowestPriorityPrepend

    Permalink
  41. trait LowPriorityRemove extends AnyRef

    Permalink
  42. trait LowPriorityReversePrepend extends AnyRef

    Permalink
  43. trait LowPriorityRotateLeft extends AnyRef

    Permalink
  44. trait LowPriorityRotateRight extends AnyRef

    Permalink
  45. trait LowPriorityToCoproductTraversable extends AnyRef

    Permalink
  46. trait LowPriorityZipOne extends AnyRef

    Permalink
  47. trait LowestPriorityPrepend extends AnyRef

    Permalink
  48. trait MapCons[A, M <: HList] extends DepFn2[A, M] with Serializable

    Permalink
  49. trait MapFolder[L <: HList, R, HF] extends Serializable

    Permalink

    Type class supporting mapping a polymorphic function over this HList and then folding the result using a monomorphic function value.

  50. trait Mapped[L <: HList, F[_]] extends Serializable

    Permalink

    Type class witnessing that the result of wrapping each element of HList L in type constructor F is Out.

  51. trait Mapper[HF, In <: HList] extends DepFn1[In] with Serializable

    Permalink

    Type class supporting mapping a higher ranked function over this HList.

  52. trait Modifier[L <: HList, U, V] extends DepFn2[L, (U) ⇒ V] with Serializable

    Permalink

    Type class supporting replacement of the first element of type U from this HList with 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 HList with the result of its transformation via a given function into a new element of type V. Available only if this HList contains an element of type U.

    Annotations
    @implicitNotFound( ... )
  53. trait ModifierAt[L <: HList, N <: Nat, U, V] extends DepFn2[L, (U) ⇒ V]

    Permalink

    Type class supporting replacement of the Nth element of this HList with the result of calling F on it.

    Type class supporting replacement of the Nth element of this HList with the result of calling F on it. Available only if this HList contains at least N elements.

  54. trait NatTRel[L1 <: HList, F1[_], L2 <: HList, F2[_]] extends Serializable

    Permalink

    Type class witnessing that HLists L1 and L2 have elements of the form F1[Ln] and F2[Ln] respectively for all indices n.

    Type class witnessing that HLists L1 and L2 have elements of the form F1[Ln] and F2[Ln] respectively for all indices n. This implies that a natural transform F1 ~> F2 will take a list of type L1 onto a list of type L2.

  55. trait PadTo[N, A, L <: HList] extends DepFn2[A, L] with Serializable

    Permalink

    Type class supporting producing a HList of shape N padded with elements of type A.

  56. trait PaddedGrouper[L <: HList, N <: Nat, Step <: Nat, Pad <: HList] extends DepFn2[L, Pad] with Serializable

    Permalink
  57. trait Partition[L <: HList, U] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting partitioning this HList into those elements of type U and the remainder

  58. trait Patcher[N <: Nat, M <: Nat, L <: HList, In <: HList] extends DepFn2[L, In] with Serializable

    Permalink

    Type class supporting the patching of an HList

  59. trait Permutations[L <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting the calculation of every permutation of this 'HList'

  60. trait Prepend[P <: HList, S <: HList] extends DepFn2[P, S] with Serializable

    Permalink

    Type class supporting prepending to this HList.

  61. sealed trait ProductToHList[-T] extends Serializable

    Permalink

    Type class supporting mappings from type T to an HList.

    Type class supporting mappings from type T to an HList. Currently only supports mapping nested pairs to an HList

  62. trait Reify[L <: HList] extends DepFn0 with Serializable

    Permalink

    Type class supporting reifying an HList of singleton types.

  63. trait Remove[L <: HList, E] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting removal of an element from this HList.

    Type class supporting removal of an element from this HList. Available only if this HList contains an element of type E.

    Annotations
    @implicitNotFound( ... )
  64. trait RemoveAll[L <: HList, SL <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting removal of a sublist from this HList.

    Type class supporting removal of a sublist from this HList. Available only if this HList contains a sublist of type SL.

    The elements of SL do not have to be contiguous in this HList.

    Annotations
    @implicitNotFound( ... )
  65. trait Repeat[L <: HList, N <: Nat] extends DepFn1[L] with Serializable

    Permalink

    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

  66. trait ReplaceAt[L <: HList, N <: Nat, V] extends DepFn2[L, V] with Serializable

    Permalink

    Type class supporting replacement of the Nth element of this HList with an element of type V.

    Type class supporting replacement of the Nth element of this HList with an element of type V. Available only if this HList contains at least N elements.

    Annotations
    @implicitNotFound( ... )
  67. trait Replacer[L <: HList, U, V] extends DepFn2[L, V] with Serializable

    Permalink

    Type class supporting replacement of the first element of type U from this HList with an element of type V.

    Type class supporting replacement of the first element of type U from this HList with an element of type V. Available only if this HList contains an element of type U.

    Annotations
    @implicitNotFound( ... )
  68. trait Reverse[L <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting reversing this HList.

  69. trait ReversePrepend[P <: HList, S <: HList] extends DepFn2[P, S] with Serializable

    Permalink

    Type class supporting reverse prepending to this HList.

  70. trait ReverseSplit[L <: HList, N <: Nat] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting splitting this HList at the nth element returning the reverse prefix and suffix as a pair.

    Type class supporting splitting this HList at the nth element returning the reverse prefix and suffix as a pair. Available only if this HList has at least n elements.

    Annotations
    @implicitNotFound( ... )
  71. trait ReverseSplitLeft[L <: HList, U] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting splitting this HList at the first occurrence of an element of type U returning the reverse prefix and suffix as a pair.

    Type class supporting splitting this HList at the first occurrence of an element of type U returning the reverse prefix and suffix as a pair. Available only if this HList contains an element of type U.

    Annotations
    @implicitNotFound( ... )
  72. trait ReverseSplitRight[L <: HList, U] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting splitting this HList at the last occurrence of an element of type U returning the reverse prefix and suffix as a pair.

    Type class supporting splitting this HList at the last occurrence of an element of type U returning the reverse prefix and suffix as a pair. Available only if this HList contains an element of type U.

    Annotations
    @implicitNotFound( ... )
  73. trait RightFolder[L <: HList, In, HF] extends DepFn2[L, In] with Serializable

    Permalink

    Type class supporting right-folding a polymorphic binary function over this HList.

  74. trait RightReducer[L <: HList, HF] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting right-reducing a polymorphic binary function over this HList.

  75. trait RightScanner[L <: HList, In, P <: Poly] extends DepFn2[L, In] with Serializable

    Permalink

    Type class supporting right scanning of this HList with a binary polymorphic function.

  76. trait RotateLeft[L <: HList, N <: Nat] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting rotating a HList left

  77. trait RotateRight[L <: HList, N <: Nat] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting rotating a HList right

  78. trait SelectAll[L <: HList, S <: HList] extends DepFn1[L] with Serializable

    Permalink

    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( ... )
  79. trait SelectFirst[L <: HList, S <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting access to the first element of S in this HList.

    Type class supporting access to the first element of S in this HList. Available only if this HList contains at least one element of S.

    Annotations
    @implicitNotFound( ... )
  80. trait SelectMany[L <: HList, Ids <: HList] extends DepFn1[L]

    Permalink

    Type class supporting access to the elements of this HList specified by Ids.

    Type class supporting access to the elements of this HList specified by Ids. Available only if this HList contains all elements specified in Ids.

    Annotations
    @implicitNotFound( ... )
  81. trait SelectRange[L <: HList, A <: Nat, B <: Nat] extends DepFn1[L]

    Permalink

    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. Available only if this HList contains all elements in range

    Annotations
    @implicitNotFound( ... )
  82. trait Selector[L <: HList, U] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting access to the first element of this HList of type U.

    Type class supporting access to the first element of this HList of type U. Available only if this HList contains an element of type U.

    Annotations
    @implicitNotFound( ... )
  83. trait Slice[N, U, L <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting the slicing of an HList

  84. trait Split[L <: HList, N <: Nat] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting splitting this HList at the nth element returning the prefix and suffix as a pair.

    Type class supporting splitting this HList at the nth element returning the prefix and suffix as a pair. Available only if this HList has at least n elements.

    Annotations
    @implicitNotFound( ... )
  85. trait SplitLeft[L <: HList, U] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting splitting this HList at the first occurrence of an element of type U returning the prefix and suffix as a pair.

    Type class supporting splitting this HList at the first occurrence of an element of type U returning the prefix and suffix as a pair. Available only if this HList contains an element of type U.

    Annotations
    @implicitNotFound( ... )
  86. trait SplitRight[L <: HList, U] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting splitting this HList at the last occurrence of an element of type U returning the prefix and suffix as a pair.

    Type class supporting splitting this HList at the last occurrence of an element of type U returning the prefix and suffix as a pair. Available only if this HList contains an element of type U.

    Annotations
    @implicitNotFound( ... )
  87. trait SubtypeUnifier[L <: HList, B] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting unification of all elements that are subtypes of B in this HList to B, with all other elements left unchanged.

  88. trait Take[L <: HList, N <: Nat] extends DepFn1[L] with Serializable

    Permalink

    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 this HList has at least n elements.

    Annotations
    @implicitNotFound( ... )
  89. type ToArray[L <: HList, Lub] = ToTraversable[L, Array] { type Lub = Lub }

    Permalink

    Type aliases and constructors provided for backward compatibility

  90. trait ToCoproduct[L <: HList] extends Serializable

    Permalink

    Type class computing the coproduct type corresponding to this HList.

  91. trait ToCoproductTraversable[L <: HList, M[_]] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting conversion of this HList to a M with elements typed as a minimal Coproduct Cop such as each type of the elements of L appears once in Cop.

  92. type ToList[L <: HList, Lub] = ToTraversable[L, List] { type Lub = Lub }

    Permalink
  93. trait ToSized[L <: HList, M[_]] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting conversion of this HList to a Sized[M[Lub], N] with elements typed as the least upper bound Lub of the types of the elements of this HList.

    Type class supporting conversion of this HList to a Sized[M[Lub], N] with elements typed as the least upper bound Lub of the types of the elements of this HList.

    About serializability, see the comment in ToTraversable.

  94. trait ToSum[L <: HList] extends Serializable

    Permalink
  95. trait ToTraversable[L <: HList, M[_]] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting conversion of this HList to a M with elements typed as the least upper bound Lub of the types of the elements of this HList.

    Type class supporting conversion of this HList to a M with elements typed as the least upper bound Lub of the types of the elements of this HList.

    Serializable if the Factorys it implicitly finds are too. Note that the Factorys from the standard library are *not* serializable. See the tests for how to make your own serializable Factory available to ToTraversable.

  96. trait Transposer[L <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting transposing this HList.

  97. trait Tupler[L <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting conversion of this HList to a tuple.

  98. trait Unifier[L <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting unification of this HList.

  99. trait Union[L <: HList, M <: HList] extends DepFn2[L, M] with Serializable

    Permalink

    Type class supporting HList union.

    Type class supporting HList union. In case of duplicate types, this operation is a order-preserving multi-set union. If type T appears n times in this HList and m > n times in M, the resulting HList contains the first n elements of type T in this HList, followed by the last m - n element of type T in M.

  100. trait Unzip[L <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting unzipping this HList of tuples returning a tuple of HLists.

  101. trait Zip[L <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting zipping this HList of HLists returning an HList of tuples.

  102. trait ZipApply[FL <: HList, AL <: HList] extends DepFn2[FL, AL] with Serializable

    Permalink

    Type class supporting zipping this HList of monomorphic function values with its argument HList of correspondingly typed function arguments returning the result of each application as an HList.

    Type class supporting zipping this HList of monomorphic function values with its argument HList of correspondingly typed function arguments returning the result of each application as an HList. Available only if there is evidence that the corresponding function and argument elements have compatible types.

    Annotations
    @implicitNotFound( ... )
  103. trait ZipConst[C, L <: HList] extends DepFn2[C, L] with Serializable

    Permalink

    Type class supporting zipping an HList with a constant, resulting in an HList of tuples of the form ({element from input HList}, {supplied constant})

  104. trait ZipOne[H <: HList, T <: HList] extends DepFn2[H, T] with Serializable

    Permalink

    Type class supporting zipping this HList with an HList of HLists returning an HList of HLists with each element of this HList prepended to the corresponding HList element of the argument HList.

  105. trait ZipWith[L <: HList, R <: HList, P <: Poly2] extends DepFn2[L, R] with Serializable

    Permalink

    Type class supporting zipping an 'HList' with another 'HList' using a 'Poly2' resulting in an HList

  106. trait ZipWithIndex[L <: HList] extends DepFn1[L] with Serializable

    Permalink

    Type class supporting zipping a HList with its element indices, resulting in a 'HList' of tuples of the form ({element from input tuple}, {element index})

  107. trait ZipWithKeys[K <: HList, V <: HList] extends DepFn1[V] with Serializable

    Permalink

    Type class supporting zipping an HList of values with an HList of keys to create a record.

  108. trait lowPriorityToSum extends AnyRef

    Permalink

    Type class computing the sum type corresponding to this HList.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Align extends Serializable

    Permalink
  5. object At extends Serializable

    Permalink
  6. object Collect extends LowPriorityCollect with Serializable

    Permalink
  7. object CollectFirst extends LowPriorityCollectFirst with Serializable

    Permalink
  8. object Comapped extends LowPriorityComapped with Serializable

    Permalink
  9. object Combinations extends LowPriorityCombinations with Serializable

    Permalink
  10. object ConstMapper extends Serializable

    Permalink
  11. object Diff extends LowPriorityDiff with Serializable

    Permalink
  12. object Drop extends Serializable

    Permalink
  13. object Fill extends Serializable

    Permalink
  14. object FillWith extends Serializable

    Permalink
  15. object Filter extends Serializable

    Permalink
  16. object FilterNot extends Serializable

    Permalink
  17. object FlatMapInterleave extends Serializable

    Permalink
  18. object FlatMapper extends Serializable

    Permalink
  19. object Grouper extends LowPriorityGrouper with Serializable

    Permalink
  20. object HKernel

    Permalink
  21. object HKernelAux

    Permalink
  22. object HListToProduct extends Serializable

    Permalink
  23. object HNilHKernel extends HNilHKernel with Product with Serializable

    Permalink
  24. object Init extends Serializable

    Permalink
  25. object Interleave extends Serializable

    Permalink
  26. object Intersection extends Serializable

    Permalink
  27. object IsHCons extends Serializable

    Permalink
  28. object Last extends Serializable

    Permalink
  29. object LeftFolder extends Serializable

    Permalink
  30. object LeftReducer extends Serializable

    Permalink
  31. object LeftScanner extends Serializable

    Permalink
  32. object Length extends Serializable

    Permalink
  33. object LiftAll

    Permalink
  34. object MapCons extends Serializable

    Permalink
  35. object MapFolder extends Serializable

    Permalink
  36. object Mapped extends LowPriorityMapped with Serializable

    Permalink
  37. object Mapper extends Serializable

    Permalink
  38. object Modifier extends Serializable

    Permalink
  39. object ModifierAt

    Permalink
  40. object NatTRel extends Serializable

    Permalink
  41. object PadTo extends Serializable

    Permalink
  42. object PaddedGrouper extends LowPriorityPaddedGrouper with Serializable

    Permalink
  43. object Partition extends Serializable

    Permalink
  44. object Patcher extends Serializable

    Permalink
  45. object Permutations extends Serializable

    Permalink
  46. object Prepend extends LowPriorityPrepend with Serializable

    Permalink
  47. object ProductToHList extends Serializable

    Permalink
  48. object Reify extends Serializable

    Permalink
  49. object Remove extends LowPriorityRemove with Serializable

    Permalink
  50. object RemoveAll extends Serializable

    Permalink
  51. object Repeat extends Serializable

    Permalink
  52. object ReplaceAt extends Serializable

    Permalink
  53. object Replacer extends Serializable

    Permalink
  54. object Reverse extends Serializable

    Permalink
  55. object ReversePrepend extends LowPriorityReversePrepend with Serializable

    Permalink
  56. object ReverseSplit extends Serializable

    Permalink
  57. object ReverseSplitLeft extends Serializable

    Permalink
  58. object ReverseSplitRight extends Serializable

    Permalink
  59. object RightFolder extends Serializable

    Permalink
  60. object RightReducer extends Serializable

    Permalink
  61. object RightScanner extends Serializable

    Permalink
  62. object RotateLeft extends LowPriorityRotateLeft with Serializable

    Permalink
  63. object RotateRight extends LowPriorityRotateRight with Serializable

    Permalink
  64. object SelectAll extends Serializable

    Permalink
  65. object SelectFirst extends Serializable

    Permalink
  66. object SelectMany

    Permalink
  67. object SelectRange

    Permalink
  68. object Selector extends Serializable

    Permalink
  69. object Slice extends Serializable

    Permalink
  70. object Split extends Serializable

    Permalink
  71. object SplitLeft extends Serializable

    Permalink
  72. object SplitRight extends Serializable

    Permalink
  73. object SubtypeUnifier extends Serializable

    Permalink
  74. object Take extends Serializable

    Permalink
  75. def ToArray[L <: HList, Lub](implicit toArray: ToArray[L, Lub]): ToArray[L, Lub]

    Permalink
  76. object ToCoproduct extends Serializable

    Permalink
  77. object ToCoproductTraversable extends LowPriorityToCoproductTraversable with Serializable

    Permalink
  78. def ToList[L <: HList, Lub](implicit toList: ToList[L, Lub]): ToList[L, Lub]

    Permalink
  79. object ToSized extends Serializable

    Permalink
  80. object ToSum extends lowPriorityToSum with Serializable

    Permalink
  81. object ToTraversable extends Serializable

    Permalink
  82. object Transposer extends Serializable

    Permalink
  83. object Tupler extends TuplerInstances with Serializable

    Permalink
  84. object Unifier extends Serializable

    Permalink
  85. object Union extends Serializable

    Permalink
  86. object Unzip extends Serializable

    Permalink
  87. object Zip extends Serializable

    Permalink
  88. object ZipApply extends Serializable

    Permalink
  89. object ZipConst extends Serializable

    Permalink
  90. object ZipOne extends LowPriorityZipOne with Serializable

    Permalink
  91. object ZipWith extends Serializable

    Permalink
  92. object ZipWithIndex extends Serializable

    Permalink
  93. object ZipWithKeys extends Serializable

    Permalink
  94. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  95. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  96. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  97. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  98. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  99. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  100. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  101. implicit def hlistOrdering[H, T <: HList](implicit hOrdering: Ordering[H], tOrdering: Ordering[T]): Ordering[::[H, T]]

    Permalink
  102. implicit object hnilOrdering extends Ordering[HNil]

    Permalink
  103. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  104. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  105. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  106. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  107. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  108. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  109. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  110. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  111. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped