Difference between revisions of "cpp/numeric/math/signbit"
From cppreference.com
m (Text replace - "<!-- ======== --> " to "") |
m (Text replace - "{{see also}}" to "===See also===") |
||
Line 26: | Line 26: | ||
nonzero value if {{tt|arg}} is negative, {{cpp|0}} otherwise | nonzero value if {{tt|arg}} is negative, {{cpp|0}} otherwise | ||
− | + | ===See also=== | |
{{dcl list begin}} | {{dcl list begin}} |
Revision as of 18:02, 2 August 2011
Template:cpp/numeric/math/sidebar Template:ddcl list begin <tr class="t-dsc-header">
<td>Defined in header
</td>
<cmath>
<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