implicit object bindableInt extends Parsing[Int]
Ordering
- Alphabetic
- By Inheritance
Inherited
- bindableInt
- Parsing
- PathBindable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def bind(key: String, value: String): Either[String, Int]
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 orLeft
of an error message if the binding failed
- Definition Classes
- → PathBindable
- def javascriptUnbind: String
Javascript function to unbind in the Javascript router.
Javascript function to unbind in the Javascript router.
- Definition Classes
- PathBindable
- def transform[B](toB: (Int) => B, toA: (B) => Int): PathBindable[B]
Transform this PathBinding[A] to PathBinding[B]
Transform this PathBinding[A] to PathBinding[B]
- Definition Classes
- PathBindable
- def unbind(key: String, value: Int): String
Unbind a URL path parameter.
Path binder for Int.