implicit object bindableChar extends PathBindable[Char]

Path binder for Char.

Source
Binders.scala
Linear Supertypes
PathBindable[Char], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. bindableChar
  2. PathBindable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def bind(key: String, value: String): Either[String, Char]

    Bind an URL path parameter.

    Bind an URL path parameter.

    key

    Parameter key

    value

    The value as String (extracted from the URL path)

    returns

    Right of the value or Left of an error message if the binding failed

    Definition Classes
    PathBindable
  2. def javascriptUnbind: String

    Javascript function to unbind in the Javascript router.

    Javascript function to unbind in the Javascript router.

    Definition Classes
    PathBindable
  3. def transform[B](toB: (Char) => B, toA: (B) => Char): PathBindable[B]

    Transform this PathBinding[A] to PathBinding[B]

    Transform this PathBinding[A] to PathBinding[B]

    Definition Classes
    PathBindable
  4. def unbind(key: String, value: Char): String

    Unbind a URL path parameter.

    Unbind a URL path parameter.

    key

    Parameter key

    value

    Parameter value.

    Definition Classes
    PathBindable