Package-level declarations
Functions
Link copied to clipboard
.tablecolumn column:{Int} of:{MarkdownContent} -> Iterable<Any>
Content copied to clipboard
Retrieves a specific column from a table as a collection of values.
Link copied to clipboard
.tablecolumns of:{MarkdownContent} -> Iterable<Iterable<out Any>>
Content copied to clipboard
Retrieves all columns from a table as a collection of collections.
Link copied to clipboard
.tablecompute column:{Int}
compute:{Lambda}
table:{MarkdownContent}
-> Node
Content copied to clipboard
Performs a computation on a specific column of a table, appending the result to a new cell in the bottom.
Link copied to clipboard
.tablefilter column:{Int}
filter:{Lambda}
table:{MarkdownContent}
-> Node
Content copied to clipboard
Filters the rows of a table based on a boolean expression on a specific column.
Link copied to clipboard
.tablesort column:{Int}
order:{TableSortOrder = TableSortOrder.ASCENDING}
table:{MarkdownContent}
-> Node
Content copied to clipboard
Sorts a table based on the values of a column.