-
Notifications
You must be signed in to change notification settings - Fork 158
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
Mz/update toolchain #1518
Mz/update toolchain #1518
Conversation
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.
just a few questions (maybe some rust regression on lifetime inference)
@@ -61,7 +61,7 @@ impl ServerKey { | |||
str: &'a FheString, | |||
pat: &'a FheString, | |||
null: Option<&'a FheAsciiChar>, | |||
) -> (CharIter, CharIter, Range<usize>) { | |||
) -> (CharIter<'a>, CharIter<'a>, Range<usize>) { |
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.
🧐 that's new
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.
Yes
@@ -254,7 +254,7 @@ pub trait ContiguousEntityContainer: AsRef<[Self::Element]> { | |||
fn par_chunks<'this>( | |||
&'this self, | |||
chunk_size: usize, | |||
) -> ParallelChunksWrappingLendingIterator<'_, Self::Element, Self::SelfView<'_>> | |||
) -> ParallelChunksWrappingLendingIterator<'this, Self::Element, Self::SelfView<'this>> |
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.
do you have the lint that this is triggered by ? It's weird the inference is not working here
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.
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.
thanks that's very useful, so essentially the lifetime elision is not exactly "find the lifetime yourself"
No description provided.