method

find

v2_2_9 - Show latest stable - Class: Gem::List
find()
public

No documentation available.

# File lib/rubygems/util/list.rb, line 24
    def find
      n = self
      while n
        v = n.value
        return v if yield(v)
        n = n.tail
      end

      nil
    end