Arrow.Array.Utf8 (Arrow v0.1.0)

Copy Markdown

Variable-length UTF-8 column. offsets is length + 1 little-endian int32s; values is the concatenation of every slot's UTF-8 bytes.

Summary

Types

t()

@type t() :: %Arrow.Array.Utf8{
  length: non_neg_integer(),
  null_count: non_neg_integer(),
  offsets: binary(),
  validity: binary() | nil,
  values: binary()
}