Table

object Table

Provides Table factory.

Companion:
class
class Object
trait Matchable
class Any
Table.type

Value members

Concrete methods

def apply(data: Seq[Seq[String]], rowOriented: Boolean): Table

Creates table with supplied data.

Creates table with supplied data.

Value parameters:
data

table data

rowOriented

indicator for row orientation

Returns:

row-oriented table if rowOriented; otherwise, column-oriented table

def forColumns(data: Seq[Seq[String]]): Table

Creates column-oriented table with supplied data.

Creates column-oriented table with supplied data.

Value parameters:
data

table data

def forRows(data: Seq[Seq[String]]): Table

Creates row-oriented table with supplied data.

Creates row-oriented table with supplied data.

Value parameters:
data

table data