# File structures/CellComplex.rb, line 59
  def [](k)
    if (k>=0 && k<= @dim)
      return @tuple[k]
    else
      return nil
    end
  end