class CAShift
Public Instance Methods
initialize_copy(p1)
click to toggle source
static VALUE rb_ca_shift_initialize_copy (VALUE self, VALUE other) { CAShift *ca, *cs; Data_Get_Struct(self, CAShift, ca); Data_Get_Struct(other, CAShift, cs); ca_shift_setup(ca, cs->parent, cs->shift, cs->fill, cs->roll); return self; }