Check whether this value is the Decfloat equivalent of Double#POSITIVE_INFINITY.
()
| 114 | * {@link Double#POSITIVE_INFINITY}. |
| 115 | */ |
| 116 | public final boolean isPositiveInfinity() { |
| 117 | parse(); |
| 118 | return special == Special.POSITIVE_INFINITY; |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Check whether this value is the {@link Decfloat} equivalent of |
no test coverage detected