Re: Is there a way to specify byte order when reading a binary file?

2018-04-22 Thread xomachine
If you are interested in parsing a file of specific format, the [NESM](https://github.com/xomachine/NESM) library ([docs](https://xomachine.github.io/NESM/)) might also be useful for that purpose.

Re: Is there a way to specify byte order when reading a binary file?

2018-04-19 Thread Araq
https://nim-lang.org/docs/endians.html

Is there a way to specify byte order when reading a binary file?

2018-04-19 Thread tahoma
Hello! I am working on a package to parse FCS files (data file from flow cytometry experiments) and got stuck when I got to parsing the data segment of a FCS file. import streams var s = newFileStream("a2006_O1T2pb05i_A1_A01.fcs", fmRead) # download this file here: https:/