Next: built-in numerics real positive, Up: built-in numerics real [Contents][Index]
<real>
typeType of real values. There is no constructor. The type predicate is
real?
.
<real>
: <real> type-constructor objValidate obj as object of type <real>
and return it.
<real>
: <boolean> type-predicate objThe type predicate is real?
. Return #t
if obj is a
<real>
object, otherwise return #f
.
<real>
: <fixnum> comparison-procedure this {X <real>}The comparison procedure is compar-real
.
<real>
: <boolean> positive? this<real>
: <boolean> negative? thisApply positive?
, negative?
to the argument and return its
return value.
<real>
: <boolean> non-positive? this<real>
: <boolean> non-negative? thisApply non-positive?
, non-negative?
to the argument and
return its return value.
<real>
: <boolean> < this {Z0 <real>} {Z <real>} …Apply <
to the arguments and return its return value.
<real>
: <boolean> > this {Z0 <real>} {Z <real>} …Apply >
to the arguments and return its return value.
<real>
: <boolean> <= this {Z0 <real>} {Z <real>} …Apply <=
to the arguments and return its return value.
<real>
: <boolean> <= this {Z0 <real>} {Z <real>} …Apply <=
to the arguments and return its return value.
<real>
: <non-negative-real> abs thisApply abs
to the argument and return its return value.
<real>
: <real> numerator thisApply numerator
to the argument and return its return value.
<real>
: <real> denominator thisApply denominator
to the argument and return its return value.
<real>
: <real> sign thisApply sign
to the argument and return its return value.
<real>
: <real> floor thisApply floor
to the argument and return its return value.
<real>
: <real> ceiling thisApply ceiling
to the argument and return its return value.
<real>
: <real> truncate thisApply truncate
to the argument and return its return value.
<real>
: <real> round thisApply round
to the argument and return its return value.
<real>
: <real> rationalize this {X <real>}Apply rationalize
to the arguments and return its return value.
Next: built-in numerics real positive, Up: built-in numerics real [Contents][Index]