I find myself preferring if not rather than unless. Is there a proper way to write that sort of condition? How do people generally feel about unless?
I find myself preferring if not rather than unless . Is there a proper
Share
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.
I hope this helps you: https://github.com/rubocop-hq/ruby-style-guide#if-vs-unless
I personally agree with what’s written there choosing
unless somethingoverif !somethingfor modifiers and simple ones and when there’s anelsepreferif.