File: formula.rb

package info (click to toggle)
ruby-spreadsheet 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 7,356 kB
  • ctags: 644
  • sloc: ruby: 6,941; makefile: 10
file content (9 lines) | stat: -rw-r--r-- 296 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
module Spreadsheet
  ##
  # Formula implementation. At the moment this is just a placeholder.
  # You may access the last calculated #value, other attributes are needed for
  # writing the Formula back into modified Excel Files.
  class Formula
    attr_accessor :data, :value, :shared
  end
end