-
-
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: Implement is_between
in Rust
#11945
Conversation
2824c0a
to
3e6ba17
Compare
3e6ba17
to
daef54a
Compare
1dc9598
to
2f34637
Compare
@ritchie46 @stinodego, would like to kindly ask to get some attention to this PR, so that I can address any comments or suggestions, if the PR is considered of any value, or else close it so that it doesn't "pollute" the repo. |
2f34637
to
a6d152d
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.
Apologies for leaving this around so long. It looks great and can be merged!
|
||
#[derive(Copy, Clone, Debug, Hash, Eq, PartialEq, Default)] | ||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] | ||
pub enum ClosedInterval { |
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.
Too bad we can't reuse the existing ClosedWindow
enum as it's in the polars-time
crate which is not available here. But I guess it's fine this way.
is_between
on the Rust side
is_between
on the Rust sideis_between
in Rust
Co-authored-by: Stijn de Gooijer <stijndegooijer@gmail.com>
Fixes #11285