math.signbit() function
The math.signbit()
function reports whether x
is negative or negative zero.
*Output data type: Boolean*
import "math"
math.signbit(x: -1.2)
// Returns true
Parameters
x
The value used in the evaluation.
*Data type: Float*