class Global_Array_Entry

Public Class Methods

new(dim1,dim2,typ_arr,init_val) click to toggle source
# File omnisode.rb, line 55
def initialize(dim1,dim2,typ_arr,init_val)
  @dim1 = dim1
  @dim2 = dim2
  @typ_arr = typ_arr
  @init_val = init_val
end

Public Instance Methods

dim1() click to toggle source
# File omnisode.rb, line 73
def dim1
  @dim1
end
dim1=(other) click to toggle source
# File omnisode.rb, line 61
def dim1=(other)
  @dim1=other
end
dim2() click to toggle source
# File omnisode.rb, line 76
def dim2
  @dim2
end
dim2=(other) click to toggle source
# File omnisode.rb, line 64
def dim2=(other)
  @dim2=other
end
init_val() click to toggle source
# File omnisode.rb, line 82
def init_val
  @init_val
end
init_val=(other) click to toggle source
# File omnisode.rb, line 70
def init_val=(other)
  @init_val=other
end
typ_arr() click to toggle source
# File omnisode.rb, line 79
def typ_arr
  @typ_arr
end
typ_arr=(other) click to toggle source
# File omnisode.rb, line 67
def typ_arr=(other)
  @typ_arr=other
end