Replies: 1 comment 1 reply
-
Right, so let's say we have a a const table = HashTableHashColumn.of(
[1, "a", { a: 1 }],
[2, "a", { a: 2 }],
[2, "b", { a: 3 }]
);
const column = table.getColumn("a");
// column is a Map containing 2 entries: [1, { a: 1}] and [2, { a: 2 }] Instead of |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
https://rimbu.org/api/rimbu/table/Table/interface#getrow
while it's possible to get list of column KV in row, afaik it's not possible to get list of row KV in column. it'd be useful in e.g implementing board games.
Beta Was this translation helpful? Give feedback.
All reactions