arrow2 0.18.0

Unofficial implementation of Apache Arrow spec in safe Rust
Documentation
1
2
3
4
5
6
7
8
9
10
# Read Arrow

When compiled with feature `io_ipc`, this crate can be used to memory map IPC Arrow files
into arrays.

The example below shows how to memory map an IPC Arrow file into `Chunk`es:

```rust
{{#include ../../../examples/ipc_file_mmap.rs}}
```