# File lib/active_support/callbacks.rb, line 112 def find(callback, &block) select { |c| c == callback && (!block_given? || yield(c)) }.first end