object Renderer
- Companion
- class
class Object
trait Matchable
class Any
Type members
Value members
Concrete methods
Returns a renderer for items of type A
. The given function
converts items of type A
to items of type B
for which a renderer is implicitly given. This allows chaining of
renderers, e.g.:
Returns a renderer for items of type A
. The given function
converts items of type A
to items of type B
for which a renderer is implicitly given. This allows chaining of
renderers, e.g.:
case class Person(name: String, email: String)
val persons = List(Person("John", "[email protected]"), Person("Mary", "[email protected]"))
new ListView(persons) {
renderer = ListView.Renderer(_.name)
}