std::nextafter, std::nexttoward
提供:cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Defined in header <cmath>
|
||
| float nextafter( float from, float to ); |
(1) | (C + + 11以来) |
| double nextafter( double from, double to ); |
(2) | (C + + 11以来) |
| long double nextafter( long double from, long double to ); |
(3) | (C + + 11以来) |
| Promoted nextafter( Arithmetic from, Arithmetic to ); |
(4) | (C + + 11以来) |
| float nexttoward( float from, long double to ); |
(5) | (C + + 11以来) |
| double nexttoward( double from, long double to ); |
(6) | (C + + 11以来) |
| long double nexttoward( long double from, long double to ); |
(7) | (C + + 11以来) |
| double nexttoward( Integral from, long double to ); |
(8) | (C + + 11以来) |
fromの方向にtoの次に表現可能な値を返します。 fromはtoに等しい場合、toが返されます。.Original:
Returns the next representable value of
from in the direction of to. If from equals to to, to is returned.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
いずれかの引数が整数型を持つ場合、それはdoubleにキャストされます。他の引数はlong doubleあれば、戻り値の型はlong double、それ以外の場合はdoubleです
Original:
If any argument has integral type, it is cast to double. If any other argument is long double, then the return type is long double, otherwise it is double
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] パラメータ
| from, to | - | 浮動小数点値
Original: floating point values The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
fromの方向にtoの次に表現可能な値.Original:
the next representable value of
from in the direction of to.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 例
| This section is incomplete Reason: no example |