-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
feat(rust): Add split_at
method to arrow Array
#16620
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #16620 +/- ##
==========================================
- Coverage 81.51% 81.50% -0.01%
==========================================
Files 1414 1414
Lines 185714 186252 +538
Branches 3008 3027 +19
==========================================
+ Hits 151385 151810 +425
- Misses 33813 33911 +98
- Partials 516 531 +15 ☔ View full report in Codecov by Sentry. |
193dd87
to
cf3a8c0
Compare
841b607
to
827112a
Compare
827112a
to
b473cb9
Compare
This adds a
split_at
andsplit_at_unchecked
method to each type that implements theArray
trait. This is done under theSplitable
trait.