There is not, but you could create one either the clean-ish way:
a = [0,2,1,0,3]
module Enumerable
def first_not(&block)
find{ |x| !block[x] }
end
end
p a.first_not(&:zero?)
#=> 2
...or the horribly-amusing hack way:
class Proc
def !
proc{ |o,*a| !self[o,*a] }
end
end
p a.find(&!(:zero?.to_proc))
#=> 2
...or the terse-but-terribly-dangerous way:
class Symbol
def !
proc{ |o,*a| !o.send(self,*a) }
end
end
p a.find(&!:zero?)
#=> 2
But I'd advocate just skipping the tricky Symbol#to_proc usage and saying what you want:
p a.find{ |i| !i.zero? }
#=> 2
reject(...).firstseems like what you're after -- what's wrong with that? – Joseph Weissman Apr 29 '11 at 19:38[a, b, c].find{|i| i != 0 }– konus Apr 29 '11 at 19:45findis that it stops iterating as soon as it find the first matching value. – Phrogz Apr 29 '11 at 20:03[1,2,3].find(&:nonzero?) # => 1:-) – Marc-André Lafortune Apr 29 '11 at 20:15