taichi-ishitani/rggen

View on GitHub
lib/rggen/core_extensions/math.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Math
  module_function

  def clog2(value)
    Math.log2(value).ceil
  end
end