Method: YARD::I18n::Messages#each

Defined in:
lib/yard/i18n/messages.rb

#each {|message| ... } ⇒ void

This method returns an undefined value.

Enumerates each YARD::I18n::Message in the container.

Yield Parameters:

  • message (Message)

    the next message object in the enumeration.

Since:

  • 0.8.1



20
21
22
# File 'lib/yard/i18n/messages.rb', line 20

def each(&block)
  @messages.each_value(&block)
end