arrow2 0.18.0

Unofficial implementation of Apache Arrow spec in safe Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Write JSON

When compiled with feature `io_json`, you can use this crate to write JSON.
The following example writes an array to JSON:

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

Likewise, you can also use it to write to NDJSON:

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