-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
if! syntax for if not #7927
Comments
Here's some relevant CodePlex conversation on this subject: |
An extra +1 if Ruby's |
I think you need white spaces before
I don't know why |
@asvishnyakov Because the parenthesis that follow the |
@asvishnyakov as @HaloFour said so I would like it to be keyword if! or iff or ifn So if you normally use space before parentheses then it would be if! () instead of if !() Because the problem will arise when you write one line if if (true) DoSomeThing(); //// I don't like this but many people use it |
A keyword containing a punctuation character, especially a unary operator, is likely a parsing nightmare. Adding any keyword for this seems way overkill considering that the problem is already so easily solved, even if a few people find the syntax unsavory. At best I could see perhaps consideration for using the unary negation operator for conditions in control statements such as |
@HaloFour It don't seem like a problem when you write a short logic |
@Thaina At the very worst you have to wrap the Boolean expression in parenthesis. It's far from a problem. The c family of languages has survived just fine without a separate negated conditional statement. |
@HaloFour Wrapping long logic in parentheses just for negate logic that's a problem in source code. tracking logic is harder. less obvious and difficult to manage |
It's strictly a question of taste. Most languages, like the c family of languages, don't have a dedicated negated conditional statement. It's simply not needed. There's not a single use case here that can't be solved with existing syntax and two additional characters. |
@HaloFour If we have no taste we don't need to use C# or even C. We could just use assembly. We can solve any problem with assembly |
Removing parentheses from |
@asvishnyakov If they did permit placing a // all legal
if!(expression) { }
if! (expression) { }
if !(expression) { }
if ! (expression) { } |
@HaloFour, Yep. Yet another reason to allow |
I would like it to have only one correct syntax so I'm convinced that it should just allow ! just before any boolean parentheses So it should allow just Which is fine by me bacause I will just use if!() |
public int Square(int x) => x * x; also doesn't solve any problem, if readability isn't a problem. I consider readability to be a big consideration, so I support this proposal. |
👍 |
We are now taking language feature discussion in other repositories:
Features that are under active design or development, or which are "championed" by someone on the language design team, have already been moved either as issues or as checked-in design documents. For example, the proposal in this repo "Proposal: Partial interface implementation a.k.a. Traits" (issue 16139 and a few other issues that request the same thing) are now tracked by the language team at issue 52 in https://github.com/dotnet/csharplang/issues, and there is a draft spec at https://github.com/dotnet/csharplang/blob/master/proposals/default-interface-methods.md and further discussion at issue 288 in https://github.com/dotnet/csharplang/issues. Prototyping of the compiler portion of language features is still tracked here; see, for example, https://github.com/dotnet/roslyn/tree/features/DefaultInterfaceImplementation and issue 17952. In order to facilitate that transition, we have started closing language design discussions from the roslyn repo with a note briefly explaining why. When we are aware of an existing discussion for the feature already in the new repo, we are adding a link to that. But we're not adding new issues to the new repos for existing discussions in this repo that the language design team does not currently envision taking on. Our intent is to eventually close the language design issues in the Roslyn repo and encourage discussion in one of the new repos instead. Our intent is not to shut down discussion on language design - you can still continue discussion on the closed issues if you want - but rather we would like to encourage people to move discussion to where we are more likely to be paying attention (the new repo), or to abandon discussions that are no longer of interest to you. If you happen to notice that one of the closed issues has a relevant issue in the new repo, and we have not added a link to the new issue, we would appreciate you providing a link from the old to the new discussion. That way people who are still interested in the discussion can start paying attention to the new issue. Also, we'd welcome any ideas you might have on how we could better manage the transition. Comments and discussion about closing and/or moving issues should be directed to #18002. Comments and discussion about this issue can take place here or on an issue in the relevant repo. I think dotnet/csharplang#157 is probably the best place to continue discussion on this request. |
Most of the times we do any not logic. It very messy
To add parentheses just for add ! in front of all logic
Or empty if then else
Or cache a bool
It very surprising that there is no easy way to make shorthand easily
So I want to propose if! syntax
The text was updated successfully, but these errors were encountered: