class Psych::Coder

def map tag = @tag, style = @style

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

def map: (?String tag, ?Integer style) -> Hash

This signature was generated using 75 samples from 1 application.

Emit a map. The coder will be yielded to the block.
def map tag = @tag, style = @style
  @tag   = tag
  @style = style
  yield self if block_given?
  @map
end