In Files

  • yaml/types.rb

YAML::Object

Unresolved objects

Public Class Methods

tag_subclasses?() click to toggle source
 
               # File yaml/types.rb, line 45
def self.tag_subclasses?; false; end
            

Public Instance Methods

to_yaml( opts = {} ) click to toggle source
 
               # File yaml/types.rb, line 46
def to_yaml( opts = {} )
    YAML::quick_emit( self, opts ) do |out|
        out.map( "tag:ruby.yaml.org,2002:object:#{ @class }", to_yaml_style ) do |map|
            @ivars.each do |k,v|
                map.add( k, v )
            end
        end
    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