class HeatIndex::Fahrenheit

Public Instance Methods

as_c() click to toggle source
# File lib/heat-index.rb, line 77
def as_c
    Celsius.new((5 * (value - 32)) / 9)
end
as_f() click to toggle source
# File lib/heat-index.rb, line 73
def as_f
    self
end
as_k() click to toggle source
# File lib/heat-index.rb, line 81
def as_k
    self.as_c.as_k
end