/* method: empty? -- returns true if empty array */ static VALUE na_is_empty(VALUE self) { struct NARRAY *ary; GetNArray(self,ary); if (ary->total==0) return Qtrue; return Qfalse; }