# File gglib/carray.rb, line 32 def delete(obj) if obj!=nil i=0 while i<=@intsize if self[i] == obj self[i]=nil end i+1 end else return nil end end