Class: Object::Syck::PrivateType

Inherits:
Object
  • Object
show all
Defined in:
ext/rubysl/syck/rubyext.c

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type_id, val) ⇒ Object

YAML::PrivateType.initialize



1365
1366
1367
1368
1369
1370
1371
# File 'ext/rubysl/syck/rubyext.c', line 1365

VALUE
syck_privatetype_initialize(VALUE self, VALUE type_id, VALUE val)
{
    rb_iv_set( self, "@type_id", type_id );
    rb_iv_set( self, "@value", val );
    return self;
}

Instance Attribute Details

#type_idObject

#valueObject