QueryParamDecoderMatcherWithDefault

abstract class QueryParamDecoderMatcherWithDefault[T](name: String, default: T)(implicit evidence$6: QueryParamDecoder[T])

A param extractor with a default value. If the query param is not present, the default value is returned If the query param is present but incorrectly formatted, will return None

Source:
Path.scala
class Object
trait Matchable
class Any

Value members

Concrete methods

def unapply(params: Map[String, Seq[String]]): Option[T]
Source:
Path.scala