module RBS::Types::EmptyEachType
Public Instance Methods
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 24 def each_type if block_given? # nop else enum_for :each_type end end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 32 def map_type(&block) if block _ = self else enum_for(:map_type) end end