blob: 421b8d851d25e7de807696dc0c55fa2112c42123 (
plain)
1
2
3
4
5
6
7
8
9
|
##
# Float
#
# ISO 15.2.9
class Float
# mruby special - since mruby integers may be upgraded to floats,
# floats should be compatible to integers.
include Integral
end if Object.const_defined?(:Float)
|