<div dir="ltr"><div>Hello,</div><div><br></div><div>I need to write some code that will read binary data from a file into various types defined in Data.Int, Data.Word, and the floating types. I am looking to make functions with signatures like Handle->IO Word16 and Handle->IO Int32 and Handle->IO Float and others similarly defined. One complication I am running into is that the data is stored in big endian byte order. So my functions need to be flexible with byte ordering (and I need to determine the endian ordering of the current platform). Anyhow I'm pretty much a newbie and don't know how to do this. For a float in an imperitive language I might read 4 bytes, possibly reorder them based on platform endian value, and interpret the bytes as a float via a ptr. Would the process be similar in Haskell? Pointers appreciated.</div></div>