final case class ContextResponse[F[_], A](context: A, response: Response[F]) extends Product with Serializable
- Source
- ContextResponse.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ContextResponse
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
- val context: A
- def mapContext[B](f: (A) ⇒ B): ContextResponse[F, B]
- def mapK[G[_]](fk: ~>[F, G]): ContextResponse[G, A]
- val response: Response[F]