module RBS::Types::EmptyEachType

Public Instance Methods

each_type() click to toggle source
# File rbs-1.4.0/lib/rbs/types.rb, line 23
def each_type
  if block_given?
    # nop
  else
    enum_for :each_type
  end
end