new(p1)
Create a new Psych::Emitter that writes to io.
static VALUE initialize(VALUE self, VALUE io) { yaml_emitter_t * emitter; Data_Get_Struct(self, yaml_emitter_t, emitter); yaml_emitter_set_output(emitter, writer, (void *)io); return self; }