-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
GH-41596: [C++] fixed_width_internal.h: Simplify docstring and support bit-sized types (BOOL) #41597
Conversation
|
bb4ba0c
to
76a7784
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.
+1. I'm still a bit bothered by the very verbose function names, but this is an improvement. Thank you!
@felipecrv Do you want to merge this? |
After merging your PR, Conbench analyzed the 7 benchmarking runs that have been run so far on merge-commit 657c4fa. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 8 possible false positives for unstable benchmarks that are known to sometimes produce them. |
…support bit-sized types (BOOL) (apache#41597) ### Rationale for this change Post-merge feedback from apache#41297. ### What changes are included in this PR? - Supporting `BOOL` as both a top-level and nested in FSL types - Removing the long example from the docstring of `IsFixedWidthLike` These changes don't affect users because this header was added recently and not released. ### Are these changes tested? Yes, by existing and new test cases. * GitHub Issue: apache#41596 Authored-by: Felipe Oliveira Carvalho <felipekde@gmail.com> Signed-off-by: Felipe Oliveira Carvalho <felipekde@gmail.com>
…support bit-sized types (BOOL) (apache#41597) ### Rationale for this change Post-merge feedback from apache#41297. ### What changes are included in this PR? - Supporting `BOOL` as both a top-level and nested in FSL types - Removing the long example from the docstring of `IsFixedWidthLike` These changes don't affect users because this header was added recently and not released. ### Are these changes tested? Yes, by existing and new test cases. * GitHub Issue: apache#41596 Authored-by: Felipe Oliveira Carvalho <felipekde@gmail.com> Signed-off-by: Felipe Oliveira Carvalho <felipekde@gmail.com>
Rationale for this change
Post-merge feedback from #41297.
What changes are included in this PR?
BOOL
as both a top-level and nested in FSL typesIsFixedWidthLike
These changes don't affect users because this header was added recently and not released.
Are these changes tested?
Yes, by existing and new test cases.