is there in objective-c something similar to ruby’s:
foobar = foo || bar
while foo is nil and bar is 1… so foobar will become 1 or something else if foo wouldn’t be nil 🙂
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use C’s ternary conditional operator:
In general, it takes the form
As Wevah noted, if you enable GNU C99 extensions (
-std=gnu99) you can also do