class HeatIndex::Kelvin
Public Instance Methods
as_c()
click to toggle source
# File lib/heat-index.rb, line 63 def as_c Celsius.new(value - 273) end
as_f()
click to toggle source
# File lib/heat-index.rb, line 59 def as_f self.as_c.as_f end
as_k()
click to toggle source
# File lib/heat-index.rb, line 67 def as_k self end