object Path

Source
Path.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Path
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply(list: List[String]): Path
  2. def apply(first: String, rest: String*): Path
  3. def apply(str: String): Path

    Constructs a path from a single string by splitting on the '/' character.

    Constructs a path from a single string by splitting on the '/' character.

    Leading slashes do not create an empty path segment. This is to reflect that there is no distinction between a request to http://www.example.com from http://www.example.com/.

    Trailing slashes result in a path with an empty final segment, unless the path is "/", which is Root.

    Segments are URL decoded.

    scala> Path("").toList
    res0: List[String] = List()
    scala> Path("/").toList
    res1: List[String] = List()
    scala> Path("a").toList
    res2: List[String] = List(a)
    scala> Path("/a").toList
    res3: List[String] = List(a)
    scala> Path("/a/").toList
    res4: List[String] = List(a, "")
    scala> Path("//a").toList
    res5: List[String] = List("", a)
    scala> Path("/%2F").toList
    res0: List[String] = List(/)
  4. def unapplySeq[F[_]](request: Request[F]): Some[List[String]]
  5. def unapplySeq(path: Path): Some[List[String]]