seq-data-file 0.2.1

simple sequential data file
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Seq Data File

super simple sequential data format, to put multiple data chunks one after another

## Format

Each new data chunk is preceded by a 4 bytes little endian integer that represent the size of the chunk.

```
┌──────┬──────┬────┬─────┬─┬────┬─────┬─┬───────┐
│magic │header│len1│data1│#│len2│data2│#│.......│
└──────┴──────┴────┴─────┴─┴────┴─────┴─┴───────┘
```