Namespaces
Variants
Views
Actions

std::signbit

From cppreference.com
< cpp‎ | numeric‎ | math
Revision as of 17:59, 2 August 2011 by P12bot (Talk | contribs)

Template:cpp/numeric/math/sidebar Template:ddcl list begin <tr class="t-dsc-header">

<td>
Defined in header <cmath>
</td>

<td></td> <td></td> </tr> <tr class="t-dcl ">

<td >
int signbit( float arg );
</td>

<td class="t-dcl-nopad"> </td> <td > Template:mark c++0x feature </td> </tr> <tr class="t-dcl ">

<td >
int signbit( double arg );
</td>

<td class="t-dcl-nopad"> </td> <td > Template:mark c++0x feature </td> </tr> <tr class="t-dcl ">

<td >
int signbit( long double arg );
</td>

<td class="t-dcl-nopad"> </td> <td > Template:mark c++0x feature </td> </tr> Template:ddcl list end


Determines if the given floating point number arg is negative.

Parameters

arg - floating point value

Return value

nonzero value if arg is negative, Template:cpp otherwise

Template:see also

Template:cpp/numeric/math/dcl list fabsTemplate:cpp/numeric/math/dcl list copysign