object Thereafter
- Alphabetic
- By Inheritance
- Thereafter
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- type Aux[F[_], C[_]] = Thereafter[F] { type Content[A] = C[A] }
Make the dependent Content type explicit as a type argument to help with type inference.
Make the dependent Content type explicit as a type argument to help with type inference.
The construction is the same as in shapeless. [The Type Astronaut's Guide to Shapeless Book](https://underscore.io/books/shapeless-guide/) explains the idea in Chapter 4.2.
- type EitherTThereafterContent[Content[_], E, A] = Content[Either[E, A]]
Use a type synonym instead of a type lambda so that the Scala compiler does not get confused during implicit resolution, at least for simple cases.
- trait Ops[F[_], C[_], A] extends Serializable
- type OptionTThereafterContent[Content[_], A] = Content[Option[A]]
Use a type synonym instead of a type lambda so that the Scala compiler does not get confused during implicit resolution, at least for simple cases.
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[F[_]](implicit F: Thereafter[F]): Aux[F, Content]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- implicit def eitherTThereafter[F[_], E](implicit F: Thereafter[F]): Aux[[γ$0$]EitherT[F, E, γ$0$], [γ$1$]Content[Either[E, γ$1$]]]
Thereafter instance lifted through cats.data.EitherT.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- implicit val futureThereafter: Aux[Future, Try]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- 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() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- implicit def optionTThereafter[F[_]](implicit F: Thereafter[F]): Aux[[β$3$]OptionT[F, β$3$], [β$4$]Content[Option[β$4$]]]
Thereafter instance lifted through cats.data.OptionT.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- object FutureThereafter extends Thereafter[Future]
Thereafter instance for scala.concurrent.Futures
- object syntax
Extension method for instances of Thereafter.