In Files

  • yaml/rubytypes.rb

Hash

Public Instance Methods

to_yaml( opts = {} ) click to toggle source
 
               # File yaml/rubytypes.rb, line 36
def to_yaml( opts = {} )
        YAML::quick_emit( self, opts ) do |out|
    out.map( taguri, to_yaml_style ) do |map|
        each do |k, v|
            map.add( k, v )
        end
    end
end
end
            
yaml_initialize( tag, val ) click to toggle source
 
               # File yaml/rubytypes.rb, line 27
def yaml_initialize( tag, val )
    if Array === val
        update Hash.[]( *val )              # Convert the map to a sequence
    elsif Hash === val
        update val
    else
        raise YAML::TypeError, "Invalid map explicitly tagged #{ tag }: " + val.inspect
    end
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.

blog comments powered by Disqus