inexact-number
-- r7rs
Type inexact-real
;inexact-rational
;inexact-integer
;number-inf
;complex-inf
;real-inf
;number-nan
;complex-nan
;real-nan
;inexact-complex-not-inf
;inexact-real-not-inf
;inexact-complex-not-nan
;inexact-real-not-nan
;inexact-number-not-inf-not-nan
;inexact-complex-not-inf-not-nan
;inexact-real-not-inf-not-nan
;number?
;integer?
;real?
;rational?
;complex?
;zero?
;=
;+
;-
;*
;/
;expt
;square
;inexact
;sqrt
;exp
;log
;sin
;cos
;tan
;asin
;acos
;atan
;number->string
;<
;<=
;>=
;>
;Note: These definitions consume an input that is a super-type.
floor
;ceiling
;truncate
;round
;+
;-
;*
;/
;expt
;square
;sqrt
;exp
;log
;sin
;cos
;tan
;asin
;acos
;atan
;abs
;floor/
;floor-quotient
;floor-remainder
;truncate/
;truncate-quotient
;truncate-remainder
;min
;max
;Note: These definitions produce an output that is a sub-type.
(lambda (value) (and (number? value) (inexact? value)))