import { type TableBase } from "https://deno.land/x/rimbu@1.0.3/table/custom/interface/base.ts";
const { Builder } = TableBase;
Methods
Returns the value at given row
and column
keys, or the otherwise
value if no
value is present.
Returns a map containing the column keys and values in the given row
.
Returns true if the builder has a value for given row
and column
keys.
Sets the given value
for the given row
and column
keys in the builder.
Adds the given entries
to the builder.
Remove the value at given row
and column
keys in the builder.
Removes all values in the given row
from the builder.
Removes all given rows
from the builder.
Removes all given entries
from the builder.
Performs given function f
for each entry of the collection, using given state
as initial traversal state.
Modifies the value at given row
and column
keys according to given options
.
Updates the value at given row
and column
keys according to the given update
function.
Returns an immutable collection instance containing the entries in this builder.