Re: Parsing binary Java doubles



On 2007-08-31, Stefan Arentz <stefan.arentz@xxxxxxxxx> wrote:
I have a blob of data that contains Java double values written to
it. How would I parse those back into something Lisp understands? I'm
using SBCL 1.0.9.

Read its 32-bit halves as integers, then use
sb-kernel:make-double-float.
.