Project

General

Profile

Bug #13195 ยป doc_bigdecimal_util.patch

stomar (Marcus Stollsteimer), 02/05/2017 03:34 PM

View differences:

ext/bigdecimal/lib/bigdecimal/util.rb
# frozen_string_literal: false
# BigDecimal extends the native Integer class to provide the #to_d method.
#
# When you require the BigDecimal library in your application, this method will
# bigdecimal/util extends various native classes to provide the #to_d method,
# and provides BigDecimal#to_d and BigDecimal#to_digits.
# bigdecimal/util extends the native Integer class to provide the #to_d method.
#
# When you require 'bigdecimal/util' in your application, this method will
# be available on Integer objects.
class Integer < Numeric
# call-seq:
......
end
end
# BigDecimal extends the native Float class to provide the #to_d method.
# bigdecimal/util extends the native Float class to provide the #to_d method.
#
# When you require BigDecimal in your application, this method will be
# When you require 'bigdecimal/util' in your application, this method will be
# available on Float objects.
class Float < Numeric
# call-seq:
......
end
end
# BigDecimal extends the native String class to provide the #to_d method.
# bigdecimal/util extends the native String class to provide the #to_d method.
#
# When you require BigDecimal in your application, this method will be
# When you require 'bigdecimal/util' in your application, this method will be
# available on String objects.
class String
# call-seq:
......
end
end
# BigDecimal extends the native Numeric class to provide the #to_digits and
# bigdecimal/util extends the BigDecimal class to provide the #to_digits and
# #to_d methods.
#
# When you require BigDecimal in your application, this method will be
# When you require 'bigdecimal/util' in your application, these methods will be
# available on BigDecimal objects.
class BigDecimal < Numeric
# call-seq:
......
end
end
# BigDecimal extends the native Rational class to provide the #to_d method.
# bigdecimal/util extends the native Rational class to provide the #to_d method.
#
# When you require BigDecimal in your application, this method will be
# When you require 'bigdecimal/util' in your application, this method will be
# available on Rational objects.
class Rational < Numeric
# call-seq:
    (1-1/1)