-
Notifications
You must be signed in to change notification settings - Fork 415
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
Removed closures in favour of private static methods to close issue #906 #1064
Removed closures in favour of private static methods to close issue #906 #1064
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1064 +/- ##
==========================================
+ Coverage 92.09% 93.62% +1.52%
==========================================
Files 112 112
Lines 3367 3374 +7
Branches 1051 957 -94
==========================================
+ Hits 3101 3159 +58
Misses 199 199
+ Partials 67 16 -51 ☔ View full report in Codecov by Sentry. |
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.
This is my first PR for MoreLINQ so apologies if I have missed any guidance on submitting PRs and will happily take onboard feedback
First and foremost, welcome and thank you for your initiative to help with #906.
One unit test had to be updated. This was to change the max enumerations of the test sequence from 1 to 2. The test enumerates the sequence twice so this should have always been the case. However I think previously using closures meant that test was enumerated once when it should have been twice. Happy to be corrected if I have misunderstood.
Actually you've uncovered a bug that I've documented in #1065! It seems that the sequence was accidentally getting cached by an update of the captured closure. Now that that's not happening with this PR, the test failed. I've proposed the correct fix to the test, which is to materialise the result of Rank
before asserting. I've also edited the description of this PR to say it fixes #1065.
While you seem to have addressed the bulk of methods, the following may have slipped:
If we can address those too, as well as some of the feedback, then we should be in a good position to get this merged.
Co-authored-by: Atif Aziz <[email protected]>
…umerations when testing the result. Co-authored-by: Atif Aziz <[email protected]>
Co-authored-by: Atif Aziz <[email protected]>
Co-authored-by: Atif Aziz <[email protected]>
Co-authored-by: Atif Aziz <[email protected]>
…ley/MoreLINQ into removing-closures
@atifaziz Thank you for the warm welcome and the feedback! I have hopefully addressed the requested changes and updated the methods that I missed in the initial PR. 'Memoize' might take a little bit more attention as unlike the other methods this method is a member of a non-static class. I'm not entirely sure if there is an advantage to making the method static in this scenario. At least one advantage could just be consistency. I would be interested in your opinion. For now, I have made the method static. Let me know if there are any further issues for me to address. |
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.
I have hopefully addressed the requested changes and updated the methods that I missed in the initial PR.
Thank you for all the follow-up!
'Memoize' might take a little bit more attention as unlike the other methods this method is a member of a non-static class. I'm not entirely sure if there is an advantage to making the method static in this scenario. At least one advantage could just be consistency. I would be interested in your opinion. For now, I have made the method static.
Thanks for bringing this case to my attention. I think the right call here may be to simply remove the local function and inline its body. I believe it was separated for clarity rather than consistency and one doesn't need a local function here since GetEnumerator
has no arguments and therefore no eager validation is needed.
Let me know if there are any further issues for me to address.
I addressed some minor formatting changes directly (with commits aca7772 and b6608c4) as they were awkward to point out in the PR review UI.
If we can address Memoize
then this is good to merge so nearly there! 🏁
When re-implementing this class/iterator, I found that splitting the initialization and enumeration code useful. With two methods, neither of which is static, the whole thing became easier to reason about. There are also some corner cases that are not currently covered, such as a reset and re-initialization happening between two |
@atifaziz I've changed the method so it is no longer static and following @viceroypenguin suggestion, I've split the initialisation logic and enumeration logic into two different private non-static methods. This has the benefit of the method not being too long. Happy to inline both methods if you would prefer that approach. @viceroypenguin also mentions:
I'm happy to look into this but I think it would be more appropriate to do this on a separate issue and separate PR |
@JacobSilasBentley Actually, I would completely revert the change (sorry for misleading) and leave
Agree, it should be a separate PR, but it would be good to first file those corner cases as demonstratable issues that need prioritising. |
…e private methods." This reverts commit fe4aba3.
@atifaziz I have reverted all changes made to the Memoize method made in this PR. Let me know if there are any remaining changes required before this code is merged in. |
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.
LGTM and thank you for all your help with contributing this!
This PR:
Rank
does not iterate source on re-iterations #1065One unit test had to be updated. This was to change the max enumerations of the test sequence from 1 to 2. The test enumerates the sequence twice so this should have always been the case. However I think previously using closures meant that test was enumerated once when it should have been twice. Happy to be corrected if I have misunderstood.
This is my first PR for MoreLINQ so apologies if I have missed any guidance on submitting PRs and will happily take onboard feedback