Check whether this value is the Decfloat equivalent of Double#NEGATIVE_INFINITY.
()
| 123 | * {@link Double#NEGATIVE_INFINITY}. |
| 124 | */ |
| 125 | public final boolean isNegativeInfinity() { |
| 126 | parse(); |
| 127 | return special == Special.NEGATIVE_INFINITY; |
| 128 | } |
| 129 | |
| 130 | // ------------------------------------------------------------------------ |
| 131 | // The Number API |
no test coverage detected