abstract class QueryParamDecoderMatcher[T] extends AnyRef
param extractor using QueryParamDecoder:
case class Foo(i: Int) implicit val fooDecoder: QueryParamDecoder[Foo] = ... object FooMatcher extends QueryParamDecoderMatcher[Foo]("foo") val routes = HttpRoutes.of { case GET -> Root / "closest" :? FooMatcher(2) => ...
- Source
- Path.scala
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- QueryParamDecoderMatcher
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All