Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
868051cb
Commit
868051cb
authored
Jul 15, 2018
by
Kenton Varda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a way to release a table row.
parent
6698a5af
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
table.h
c++/src/kj/table.h
+21
-0
No files found.
c++/src/kj/table.h
View file @
868051cb
...
...
@@ -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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment