Table

final case class Table[A](headers: List[String], cells: A => List[String]) extends Schema[A]
trait Serializable
trait Product
trait Equals
trait Schema[A]
class Object
trait Matchable
class Any

Value members

Concrete methods

override def toString(): String
Definition Classes
Any

Inherited methods

def draw[B <: A](values: NonEmptyList[B]): String
Inherited from
Schema
def prepare[B](f: B => A): Schema[B]
Inherited from
Schema
def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product
def provide(a: A): Schema[Any]
Inherited from
Schema
def render[B <: A]: Render[B]
Inherited from
Schema