PathMatchers

frontroute.PathMatchers
trait PathMatchers

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def double: PathMatcher[Double]
def long: PathMatcher[Long]
def regex(r: Regex): PathMatcher[Match]
def segment: PathMatcher[String]
def segment(oneOf: Seq[String]): PathMatcher[String]
def segment(oneOf: Set[String]): PathMatcher[String]
def segment(s: String): PathMatcher0

Implicits

Implicits

implicit def regexToPathMatcher(r: Regex): PathMatcher[Match]
implicit def setToSegment(oneOf: Set[String]): PathMatcher[String]
implicit def setToSegment(oneOf: Seq[String]): PathMatcher[String]
implicit def stringToSegment(s: String): PathMatcher[Unit]