fabsf

Computes the absolute value for the given value.

  1. double fabs(double value)
  2. float fabsf(float value)
    extern (C) nothrow @nogc pure @safe extern
    float
    fabsf
    (
    float value
    )
  3. int labs(int value)
  4. long llabs(long value)

Parameters

value float

the value

Return Value

Type: float

The absolute value of value

Meta