OrgTable class

A table, like

| Foo         |    Bar |  Baz |
|-------------+--------+------|
| Lorem ipsum | 30.000 |    1 |
| 123         |        |      |
Inheritance
Mixed in types

Constructors

OrgTable(Iterable<OrgTableRow> rows, String trailing)

Properties

children List<OrgNode>
The children of this node. May be empty.
no setteroverride
columnCount int
The maximum number of columns in any row of the table
no setter
hashCode int
The hash code for this object.
no setterinherited
indent String
Indenting whitespace
no setteroverride
rectangular bool
The table is rectangular if all rows contain the same number of cells
no setter
rows List<OrgTableRow>
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
trailing String
Trailing whitespace
final

Methods

columnIsNumeric(int colIdx) bool
Determine whether the column number colIdx should be treated as a numeric column. A certain percentage of non-numeric cells are tolerated.
contains(Pattern pattern) bool
Return true if this node or any of its children recursively match the supplied pattern
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override
visit<T extends OrgNode>(bool visitor(T)) bool
Walk AST with visitor. Specify a type T to only visit nodes of that type. The visitor function must return true to continue iterating, or false to stop.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited