class NumRu::NetCDFDim

Public Instance Methods

inspect() click to toggle source
# File lib/netcdf.rb, line 795
def inspect
  'NetCDFDim:'+name
end
length_ul0() click to toggle source
# File lib/netcdf.rb, line 799
def length_ul0
   if unlimited?
      0
   else
      length
   end
end