c

org.http4s.dsl.impl

MethodConcat

class MethodConcat extends AnyRef

Source
Path.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MethodConcat
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MethodConcat(methods: Set[Method])

Value Members

  1. val methods: Set[Method]
  2. def unapply(method: Method): Option[Method]

    HttpMethod 'or' extractor:

    HttpMethod 'or' extractor:

    val request: Request = ???
    request match {
      case (Method.GET | Method.POST) -> Root / "123" => ???
    }