class Concurrent::Map

def each_pair

Experimental RBS support (using type sampling data from the type_fusion project).

def each_pair: () -> Concurrent::Map

This signature was generated using 152 samples from 2 applications.

Returns:
  • (self) -

Other tags:
    Yieldparam: value -
    Yieldparam: key -

Other tags:
    Yield: - for each key value pair in the map
def each_pair
  return enum_for :each_pair unless block_given?
  super
end