Namespaces
Variants
Views
Actions

std::signbit

From cppreference.com
< cpp‎ | numeric‎ | math
Revision as of 22:19, 31 May 2013 by P12bot (Talk | contribs)

 
 
 
 
Defined in header <cmath>
bool signbit( float arg );
(since C++11)
bool signbit( double arg );
(since C++11)
bool signbit( long double arg );
(since C++11)


Determines if the given floating point number arg is negative.

Parameters

arg - floating point value

Return value

true if arg is negative, false otherwise

See also

absolute value of a floating point value (|x|)
(function) [edit]
(C++11)(C++11)(C++11)
copies the sign of a floating point value
(function) [edit]