Arrow.Array.FixedSizeBinary (Arrow v0.1.0)

Copy Markdown

Fixed-width binary column. values is exactly length * byte_width bytes (no offsets).

Summary

Types

t()

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