Method: GGLib::CArray#pp

Defined in:
lib/carray.rb

#ppObject



51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/carray.rb', line 51

def pp
  puts "CArray: "
  i=0
  while i<=@intsize
    if self[i] !=nil
      puts i.to_s+"\t"+self[i].to_s
    else
      puts i.to_s+"\tnil"   
    end
    i+=1
  end    
end