-
Notifications
You must be signed in to change notification settings - Fork 34
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 ArrayTrait
#546
Add ArrayTrait
#546
Conversation
|
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #546 +/- ##
==========================================
+ Coverage 30.51% 31.80% +1.29%
==========================================
Files 88 92 +4
Lines 6233 6357 +124
==========================================
+ Hits 1902 2022 +120
- Misses 4331 4335 +4
☔ View full report in Codecov by Sentry. |
b9343dc
to
0eb9b1e
Compare
054f72a
to
3ff90d1
Compare
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.
clang-tidy
found issue(s) with the introduced code (1/1)
False positive due to include errors
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.
Should we add .view(...)
? It would allow the following syntax
for (auto* value : arrayTrait.view(myArray))
{
...
}
Since they didn't have getters, and the other functions with the same name did something else entirely, it's easier to understand this way
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
c909fae
to
f24b4d8
Compare
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.
clang-tidy
found issue(s) with the introduced code (1/1)
No clang-tidy warnings found so I assume my comments were addressed
6243a97
to
fa59f61
Compare
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.
clang-tidy
found issue(s) with the introduced code (1/1)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
No clang-tidy warnings found so I assume my comments were addressed
Description
Adds the
ArrayTrait
and defines reflection forstd::vector<T>
types.Checklist