Path

object Path
Companion
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

case class AbsolutePath[A] extends Path[A]
Companion
object
object AbsolutePath
Companion
class
case class RootlessPath[A] extends Path[A]
Companion
object
object RootlessPath
Companion
class

Types

type AbsolutePlain = AbsolutePath[String]
type Plain = Path[String]

A plain path represented with a String

A plain path represented with a String

See .apply for creating these

type RootlessPlain = RootlessPath[String]

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def absolute(path: String): Option[AbsolutePath[String]]
def apply(s: String): Plain
def cmp[A](one: Path[A], two: Path[A]): Int
def createAbsolute(path: String): AbsolutePath[String]
def createRootless(path: String): RootlessPath[String]
def empty: RootlessPath[String]
def of[B](path: String, b: B): Path[B]
def plain(path: String): Plain
def rootless(path: String): Option[RootlessPath[String]]
def unapply[A](p: Path[A]): Option[(String, A, Chain[String])]

Implicits

Implicits

implicit def order[A]: Order[Path[A]]
implicit def ordering[A]: Ordering[Path[A]]
implicit def show[A]: Show[Path[A]]