Browse thread
Strange behaviour of string_of_float
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2008-06-22 (20:33) |
From: | Daniel_Bünzli <daniel.buenzli@e...> |
Subject: | Re: [Caml-list] Strange behaviour of string_of_float |
Richard gave you the reason. If you can serialize to binary, you can acheive what you want by serializing the 64 bits integers you get with Int64.bits_of_float and applying Int64.float_of_bits to the integers you deserialize. Best, Daniel