org.http4s.dsl.impl.MatrixVar
See theMatrixVar companion object
Matrix path variable extractor For an example see MatrixURIs This is useful for representing a resource that may be addressed in multiple dimensions where order is unimportant
object BoardVar extends MatrixVar("square", List("x", "y"))
Path("/board/square;x=5;y=3") match {
case Root / "board" / BoardVar(IntVar(x), IntVar(y)) => ...
}
Attributes
- Companion:
- object
- Source:
- Path.scala
- Graph
- Supertypes