org.http4s.dsl
package org.http4s.dsl
Members list
Concise view
Type members
Classlikes
object &
A conjunction extractor. Generally used as an infix operator.
A conjunction extractor. Generally used as an infix operator.
scala> import org.http4s.dsl.&
scala> object Even { def unapply(i: Int) = (i % 2) == 0 }
scala> object Positive { def unapply(i: Int) = i > 0 }
scala> def describe(i: Int) = i match {
| case Even() & Positive() => "even and positive"
| case Even() => "even but not positive"
| case Positive() => "positive but not even"
| case _ => "neither even nor positive"
| }
scala> describe(-1)
res0: String = neither even nor positive
scala> describe(0)
res1: String = even but not positive
scala> describe(1)
res2: String = positive but not even
scala> describe(2)
res3: String = even and positive
Attributes
Attributes
- Companion:
- object
- Source:
- Http4sDsl.scala
- Graph
- Supertypes
- Known subtypes
- trait Http4sDslBinCompat[F]object io.type
object Http4sDsl
Attributes
- Companion:
- trait
- Source:
- Http4sDsl.scala
- Graph
- Supertypes
- Self type
- Http4sDsl.type
Attributes
- Source:
- Http4sDsl.scala
- Graph
- Supertypes
- Known subtypes
Attributes
- Source:
- Http4sDsl.scala
- Graph
- Supertypes
- trait RequestDslBinCompattrait Http4sDsl[F]trait Statusestrait RequestDsltrait Authtrait Methodsclass Objecttrait Matchableclass Any
- Known subtypes
- object io.type
Attributes
- Source:
- RequestDsl.scala
- Graph
- Supertypes
- Known subtypes
- trait Http4sDsl[F]trait Http4sDslBinCompat[F]object io.typetrait RequestDslBinCompatobject request.type
Attributes
- Source:
- RequestDsl.scala
- Graph
- Supertypes
- Known subtypes
Attributes
- Source:
- io.scala
- Graph
- Supertypes
- trait Http4sDslBinCompat[IO]trait RequestDslBinCompattrait Statusestrait RequestDsltrait Authtrait Methodsclass Objecttrait Matchableclass Any
- Self type
- io.type
Attributes
- Source:
- request.scala
- Graph
- Supertypes
- trait RequestDslBinCompattrait RequestDsltrait Authtrait Methodsclass Objecttrait Matchableclass Any
- Self type
- request.type