Skip to content
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

Use empty? to determine whether a seq is empty #22

Open
CampingScorpion opened this issue Jan 5, 2013 · 4 comments
Open

Use empty? to determine whether a seq is empty #22

CampingScorpion opened this issue Jan 5, 2013 · 4 comments

Comments

@CampingScorpion
Copy link

empty? is simple, direct, and effective. The use of seq as a drop-in replacement for (complement empty?) is not style worth propagating, because it doesn't encourage straight-forward code readability.

@bbatsov
Copy link
Owner

bbatsov commented Jan 5, 2013

I'm pretty sure "Joy of Clojure" had a section on the topic and the advice was the same. At least in loops it does make sense to me.

@CampingScorpion
Copy link
Author

I'm not sure if that comment is agreeing or disagreeing with me, but assuming it is disagreeing, I would ask what empty? is for if not this use?

@ghoseb
Copy link
Contributor

ghoseb commented Jan 6, 2013

@AlexBaranosky I hear you. This is a matter of preference, really. I personally use empty? or seq depending on what makes my boolean logic simpler. For example, I would always prefer (if (seq x) ...) to (if (not (empty? x)) ...). Do you prefer using empty? unconditionally?

@technomancy
Copy link

I prefer using empty? but Rich encourages using seq as a predicate. There isn't widespread agreement on the topic.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants