class Psych::Nodes::Mapping

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

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