# File lib/util.rb, line 26
  def argfind
    each { |e| x = yield(e); return x if x }
    nil
  end