AsciiTable

object AsciiTable

Taken from https://github.com/dsl-platform/101-dsl-examples/blob/master/001-periodic-table-of-elements/scala/src/main/scala/com/dslplatform/examples/AsciiTable.scala

class Object
trait Matchable
class Any

Type members

Classlikes

case class Cell(row: Int, col: Int)

Value members

Concrete methods

def apply(table: Seq[Seq[String]], centre: Cell => Boolean, separateDataRows: Boolean): String

An entry (a row) is a list of strings (representing columns). A table is a list of rows.

An entry (a row) is a list of strings (representing columns). A table is a list of rows.