class Psych::Nodes::Mapping

def initialize anchor = nil, tag = nil, implicit = true, style = BLOCK

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

def initialize: (?nil anchor, ?String? tag, ?bool implicit, ?Integer style) -> void

This signature was generated using 202 samples from 2 applications.

See also Psych::Handler#start_mapping
== See Also

+style+ is an integer indicating the mapping style.
started.
+implicit+ is a boolean indicating whether or not the map was implicitly
+tag+ is the tag associated with the map or +nil+.
+anchor+ is the anchor associated with the map or +nil+.

Create a new Psych::Nodes::Mapping object.
##
def initialize anchor = nil, tag = nil, implicit = true, style = BLOCK
  super()
  @anchor   = anchor
  @tag      = tag
  @implicit = implicit
  @style    = style
end