Default private type
[Source]
# File yaml/types.rb, line 15 def initialize( type, val ) @type_id = type; @value = val @value.taguri = "x-private:#{ @type_id }" end
# File yaml/types.rb, line 12 def self.tag_subclasses?; false; end
# File yaml/types.rb, line 19 def to_yaml( opts = {} ) @value.to_yaml( opts ) end
[Validate]