lib/backports/1.9.1/math/log2.rb



unless Math.respond_to? :log2
  def Math.log2(numeric)
    log(numeric) / log(2)
  end
end