Packages

class Tip[S, HL <: HList] extends AnyRef

Marker trait for a type indexed on an hlist.

Author:

Harshad Deo

S

Type on which the HList is indexed

HL

Type of the HList

Since

0.1

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Tip
  2. AnyRef
  3. Any
Implicitly
  1. by tip2IndexedOps
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toany2stringadd[Tip[S, HL]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Tip[S, HL], B)
    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toArrowAssoc[Tip[S, HL]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. lazy val after: After
    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toIndexedOps[HL, Before, S, After] performed by method tip2IndexedOps in typequux.HList.Tip.This conversion will take place only if an implicit value of type TIndexer[HL, Before, S, After] is in scope and at the same time HL is a subclass of HList (HL <: HList).
    Definition Classes
    IndexedOps
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. lazy val at: S
    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toIndexedOps[HL, Before, S, After] performed by method tip2IndexedOps in typequux.HList.Tip.This conversion will take place only if an implicit value of type TIndexer[HL, Before, S, After] is in scope and at the same time HL is a subclass of HList (HL <: HList).
    Definition Classes
    IndexedOps
  9. lazy val before: Before
    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toIndexedOps[HL, Before, S, After] performed by method tip2IndexedOps in typequux.HList.Tip.This conversion will take place only if an implicit value of type TIndexer[HL, Before, S, After] is in scope and at the same time HL is a subclass of HList (HL <: HList).
    Definition Classes
    IndexedOps
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  11. def drop: :+:[S, After]

    Drop the sublist before the index

    Drop the sublist before the index

    Author:

    Harshad Deo

    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toIndexedOps[HL, Before, S, After] performed by method tip2IndexedOps in typequux.HList.Tip.This conversion will take place only if an implicit value of type TIndexer[HL, Before, S, After] is in scope and at the same time HL is a subclass of HList (HL <: HList).
    Definition Classes
    IndexedOps
    Since

    0.1

  12. def ensuring(cond: (Tip[S, HL]) => Boolean, msg: => Any): Tip[S, HL]
    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toEnsuring[Tip[S, HL]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (Tip[S, HL]) => Boolean): Tip[S, HL]
    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toEnsuring[Tip[S, HL]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: => Any): Tip[S, HL]
    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toEnsuring[Tip[S, HL]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): Tip[S, HL]
    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toEnsuring[Tip[S, HL]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  18. def flatMap[B <: HList, R0 <: HList, R1 <: HList](f: (S) => B)(implicit ev0: AppendConstraint[B, After, R0], ev1: AppendConstraint[Before, R0, R1]): R1

    Map the element at the index and then "flatten" the result

    Map the element at the index and then "flatten" the result

    Author:

    Harshad Deo

    B

    Result of the map

    R0

    Result of appending B and After

    R1

    Result of the flatmap operation

    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toIndexedOps[HL, Before, S, After] performed by method tip2IndexedOps in typequux.HList.Tip.This conversion will take place only if an implicit value of type TIndexer[HL, Before, S, After] is in scope and at the same time HL is a subclass of HList (HL <: HList).
    Definition Classes
    IndexedOps
    Since

    0.1

  19. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toStringFormat[Tip[S, HL]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. def insert[C, R <: HList](c: C)(implicit ev: AppendConstraint[Before, :+:[C, :+:[S, After]], R]): R

    Insert a new element at the index

    Insert a new element at the index

    Author:

    Harshad Deo

    C

    Type of the element to be inserted

    R

    Type of the resultant HList

    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toIndexedOps[HL, Before, S, After] performed by method tip2IndexedOps in typequux.HList.Tip.This conversion will take place only if an implicit value of type TIndexer[HL, Before, S, After] is in scope and at the same time HL is a subclass of HList (HL <: HList).
    Definition Classes
    IndexedOps
    Since

    0.1

  23. def insertM[B <: HList, R0 <: HList, R1 <: HList](b: B)(implicit ev0: AppendConstraint[B, :+:[S, After], R0], ev1: AppendConstraint[Before, R0, R1]): R1

    Insert an HList at the index

    Insert an HList at the index

    Author:

    Harshad Deo

    B

    Type of the HList to be inserted

    R0

    Type of the result of appending B and At :+: After

    R1

    Type of the resultant HList

    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toIndexedOps[HL, Before, S, After] performed by method tip2IndexedOps in typequux.HList.Tip.This conversion will take place only if an implicit value of type TIndexer[HL, Before, S, After] is in scope and at the same time HL is a subclass of HList (HL <: HList).
    Definition Classes
    IndexedOps
    Since

    0.1

  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. def map[T, R <: HList](f: (S) => T)(implicit ev: AppendConstraint[Before, :+:[T, After], R]): R

    Map the element at the index

    Map the element at the index

    Author:

    Harshad Deo

    T

    Type of the result of the mapping

    R

    Type of the resultant HList

    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toIndexedOps[HL, Before, S, After] performed by method tip2IndexedOps in typequux.HList.Tip.This conversion will take place only if an implicit value of type TIndexer[HL, Before, S, After] is in scope and at the same time HL is a subclass of HList (HL <: HList).
    Definition Classes
    IndexedOps
    Since

    0.1

  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. def remove[R <: HList](implicit ev: AppendConstraint[Before, After, R]): R

    Remove the element at the index

    Remove the element at the index

    Author:

    Harshad Deo

    R

    Type of the resultant HList

    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toIndexedOps[HL, Before, S, After] performed by method tip2IndexedOps in typequux.HList.Tip.This conversion will take place only if an implicit value of type TIndexer[HL, Before, S, After] is in scope and at the same time HL is a subclass of HList (HL <: HList).
    Definition Classes
    IndexedOps
    Since

    0.1

  30. def splitAt: (Before, :+:[S, After])

    Partition the HList at the index

    Partition the HList at the index

    Author:

    Harshad Deo

    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toIndexedOps[HL, Before, S, After] performed by method tip2IndexedOps in typequux.HList.Tip.This conversion will take place only if an implicit value of type TIndexer[HL, Before, S, After] is in scope and at the same time HL is a subclass of HList (HL <: HList).
    Definition Classes
    IndexedOps
    Since

    0.1

  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. def take: Before

    Keep the sublist before the index

    Keep the sublist before the index

    Author:

    Harshad Deo

    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toIndexedOps[HL, Before, S, After] performed by method tip2IndexedOps in typequux.HList.Tip.This conversion will take place only if an implicit value of type TIndexer[HL, Before, S, After] is in scope and at the same time HL is a subclass of HList (HL <: HList).
    Definition Classes
    IndexedOps
    Since

    0.1

  33. def toString(): String
    Definition Classes
    AnyRef → Any
  34. def updated[A, R <: HList](a: A)(implicit ev: AppendConstraint[Before, :+:[A, After], R]): R

    Update the element at the index

    Update the element at the index

    Author:

    Harshad Deo

    A

    Type of the new element

    R

    Type of the resultant HList

    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toIndexedOps[HL, Before, S, After] performed by method tip2IndexedOps in typequux.HList.Tip.This conversion will take place only if an implicit value of type TIndexer[HL, Before, S, After] is in scope and at the same time HL is a subclass of HList (HL <: HList).
    Definition Classes
    IndexedOps
    Since

    0.1

  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  2. def [B](y: B): (Tip[S, HL], B)
    Implicit
    This member is added by an implicit conversion from Tip[S, HL] toArrowAssoc[Tip[S, HL]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion tip2IndexedOps fromTip[S, HL] to IndexedOps[HL, Before, S, After]

Inherited by implicit conversion any2stringadd fromTip[S, HL] to any2stringadd[Tip[S, HL]]

Inherited by implicit conversion StringFormat fromTip[S, HL] to StringFormat[Tip[S, HL]]

Inherited by implicit conversion Ensuring fromTip[S, HL] to Ensuring[Tip[S, HL]]

Inherited by implicit conversion ArrowAssoc fromTip[S, HL] to ArrowAssoc[Tip[S, HL]]

Ungrouped