Commit 868051cb authored by Kenton Varda's avatar Kenton Varda

Add a way to release a table row.

parent 6698a5af
......@@ -215,6 +215,12 @@ public:
// WARNING: This invalidates all iterators, so you can't iterate over rows and erase them this
// way. Use `eraseAll()` for that.
Row release(Row& row);
// Remove the given row from the table and return it in one operation.
//
// WARNING: This invalidates all iterators, so you can't iterate over rows and release them this
// way.
template <typename Predicate, typename = decltype(instance<Predicate>()(instance<Row&>()))>
size_t eraseAll(Predicate&& predicate);
// Erase all rows for which predicate(row) returns true. This scans over the entire table.
......@@ -767,6 +773,21 @@ void Table<Row, Indexes...>::eraseImpl(size_t pos) {
rows.removeLast();
}
template <typename Row, typename... Indexes>
Row Table<Row, Indexes...>::release(Row& row) {
KJ_IREQUIRE(&row >= rows.begin() && &row < rows.end(), "row is not a member of this table");
size_t pos = &row - rows.begin();
Impl<>::erase(*this, pos, row);
Row result = kj::mv(row);
size_t back = rows.size() - 1;
if (pos != back) {
Impl<>::move(*this, back, pos, rows[back]);
row = kj::mv(rows[back]);
}
rows.removeLast();
return result;
}
template <typename Row, typename... Indexes>
template <typename Predicate, typename>
size_t Table<Row, Indexes...>::eraseAll(Predicate&& predicate) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment