# File lib/more/facets/math/sinc.rb, line 4
  def self.sinc(x)
    (x == 0.0) ? 1.0 : sin(x) / x
  end