-
Notifications
You must be signed in to change notification settings - Fork 418
V2 null checks #114
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
V2 null checks #114
Conversation
The following is just my (subjective) opinion. I am fine either way.
I agree that there is the exception for |
Ah, I'm sorry, I completely misread that you were talking about
This was to avoid duplication in the code by way of having the policy at one location.
You could see it that way but the actual intention was that faced with a faulty
We've talked about this. Optionality is not covered by the type system but in this case, it's about covering a faulty implementation that didn't seem worth bloating docs for. Why? Well, the
I can go with this for the return value of |
Tests look good: ``` NUnit-Console version 2.6.2.12296 Copyright (C) 2002-2012 Charlie Poole. Copyright (C) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov. Copyright (C) 2000-2002 Philip Craig. All Rights Reserved. Runtime Environment - OS Version: Microsoft Windows NT 6.2.9200.0 CLR Version: 2.0.50727.8662 ( Net 3.5 ) ProcessModel: Default DomainUsage: Single Execution Runtime: net-3.5 .................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................. Tests run: 722, Errors: 0, Failures: 0, Inconclusive: 0, Time: 3.5310994 seconds Not run: 0, Invalid: 0, Ignored: 0, Skipped: 0 ``` @yln Thank for all your help with this and keen observations. I'm merging your latest contributions and we can continue the thread on `Assert` in another issue if you think it's important to reconsider for 2.0.
Tests look good:
@yln Thank for all your help with this and keen observations. I'm merging your latest contributions and we can continue the thread on P.S. I pasted this response in the wrong box, and sadly, it became part of the commit message detail. 🙈 |
🙊 |
Fixes #110