package interval
-
interval
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Functions rounding down their results.
The float function is exact on 32 bits machine but not on 64 bits machine with ints larger than 53 bits.
x**y
computes x
at power y
, rounded down, expanded to its mathematical limit when it exists.
pow x y
computes x
at power y
, rounded down, for 0 < x < ∞
and -∞ < y < ∞
.
atan2 y x
returns the arc tangent of y /. x
. The signs of x
and y
are used to determine the quadrant of the result. Result is in radians and is between -π and π.
module U : sig ... end
Locally open to restore standard integer and floating point operators.