Returns the value of this UnsignedLong as a long. This is an inverse operation to #fromLongBits. Note that if this UnsignedLong holds a value >= 2^63, the returned value will be equal to this - 2^64.
()
| 212 | */ |
| 213 | |
| 214 | @Override |
| 215 | public long longValue() { |
| 216 | return value; |
| 217 | } |
| 218 | |
| 219 | /** |
| 220 | * Returns the value of this {@code UnsignedLong} as a {@code float}, analogous to a widening |