Class: Est::Estimates::Const

Inherits:
Object
  • Object
show all
Defined in:
lib/est/estimates.rb

Overview

Const estimates.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(est) ⇒ Const

Ctor.

est

Original estimates



80
81
82
83
# File 'lib/est/estimates.rb', line 80

def initialize(est)
  @iterate = est.iterate
  @total = est.total
end

Instance Attribute Details

#iterateObject (readonly)

Returns the value of attribute iterate.



77
78
79
# File 'lib/est/estimates.rb', line 77

def iterate
  @iterate
end

#totalObject (readonly)

Returns the value of attribute total.



77
78
79
# File 'lib/est/estimates.rb', line 77

def total
  @total
end