Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add
tiledb_group_get_member_by(index|name)_v2
. #4019Add
tiledb_group_get_member_by(index|name)_v2
. #4019Changes from 24 commits
4b6d799
6fc5d17
c0f62f6
8dde4aa
b5a07a2
0ce0af4
6959e7b
24847c1
cc325c9
68b7063
8c2fd53
3f73c58
5f48204
4660ebd
948ca02
3920281
35038c6
1b8f8eb
f538bda
d266ee7
308f7f9
7d3450f
23ecd15
f4be46e
b11b572
7b70576
f756520
002d98a
8c017f2
388a38a
d9c858f
b348631
c3eceb1
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would better have been done as a template argument. It's adequate as-is, though. Using a template argument would make removal easier, because there's so little shared code that the two versions could have been defined with specializations instead of
if
or evenif constexpr
. Ultimate removal would then entail removing a whole function definition instead of editing one.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like this needs to be rebased and converted to the new CAPI_INTERFACE approach.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here too on the CAPI_INTERFACE macro.