c

router.browser

PathParts

case class PathParts(segments: Seq[String], hash: Option[String], search: Option[String], pathname: String) extends Product with Serializable

Specification of a specific set of information for routing. This one is mostly based on the DOM but its contents can be generically used in most cases.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PathParts
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PathParts(segments: Seq[String], hash: Option[String], search: Option[String], pathname: String)

Value Members

  1. def drop(n: Int): PathParts

    Drop path segments.

  2. val hash: Option[String]
  3. def parse: ParsedPathParts

    Parse the query parameters.

  4. val pathname: String
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product
  6. val search: Option[String]
  7. val segments: Seq[String]