Is it bad to check if an array is not empty by using any? method?
any?
a = [1,2,3] a.any? => true a.clear a.any? => false
Or is it better to use unless a.empty? ?
unless a.empty?
any? isn't the same as not empty? in some cases.
not empty?
>> [nil, 1].any? => true >> [nil, nil].any? => false
From the documentation:
If the block is not given, Ruby adds an implicit block of {|obj| obj} (that is any? will return true if at least one of the collection members is not false or nil).
empty?
present?
#present?
NoMethodError: undefined method 'present?' for Array
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
15046 times
active
unless a.empty?? – ShaChris23 Jun 5 '11 at 21:20