# File lib/core/facets/numeric/approx.rb, line 9
  def approx?(x, n=0.01)
    return(self == x) if n == 0
    (self - x).abs <= n
  end