/* method: reshape!(size1,size2,...,sizeN) */ static VALUE na_reshape_bang(int argc, VALUE *argv, VALUE self) { struct NARRAY *ary; GetNArray(self,ary); na_reshape(argc, argv, ary, self); return self; }