-
Notifications
You must be signed in to change notification settings - Fork 875
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 ListArray Constructors (#3879) #4065
Conversation
291433f
to
67f7016
Compare
8f78a26
to
9b61c62
Compare
@@ -104,6 +113,11 @@ mod tests { | |||
OffsetBuffer::new(vec![-1, 0, 1].into()); | |||
} | |||
|
|||
#[test] | |||
fn offsets() { | |||
OffsetBuffer::new(vec![0, 1, 2, 3].into()); |
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 is kinda embarrassing that this slipped through 😅
bdd68be
to
185c095
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.
Can you please add test coverage for the new method (ideally including error cases)?
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.
Thank you @tustvold
Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
Which issue does this PR close?
Part of #3879
Closes #4066
Rationale for this change
Adds constructors for ListArray
What changes are included in this PR?
Are there any user-facing changes?