MatrixVar

org.http4s.dsl.impl.MatrixVar
See theMatrixVar companion object
abstract class MatrixVar[F[_]](name: String, domain: F[String])(implicit evidence$1: Foldable[F])

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
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

Attributes

Source
Path.scala