When compiled with feature `io_ipc`, this crate can be used to read Arrow files.
An Arrow file is composed by a header, a footer, and blocks of `Array`s.
Reading it generally consists of:
1. 2.
The example below shows how to read them into `Chunk`es:
```rust
{{#include ../../../examples/ipc_file_read.rs}}
```