# `Arrow.RecordBatch`

A batch of columnar data: a schema, a row count, and one column per field.

The column at position `i` corresponds to the field at position `i` in the
schema, and every column reports the same `length`.

# `t`

```elixir
@type t() :: %Arrow.RecordBatch{
  columns: [Arrow.Array.t()],
  length: non_neg_integer(),
  schema: Arrow.Schema.t()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
