Minimal table interface.
Constructors
-
Table(TableDescriptor<
T, V> descriptor, [V? value]) -
Creates a table from
descriptorand optional initialvalue.factory
Properties
Methods
-
get(
int index) → V? -
Returns the element at
index, ornullfor an empty slot. -
grow(
int delta, [V? value]) → int -
Grows table length by
delta, optionally using fillvalue. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
set(
int index, V? value) → void -
Writes
valueinto the element slot atindex. -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited