ExZarr.Codecs.PipelineV3.Pipeline (ExZarr v1.1.0)

View Source

Represents a validated v3 codec pipeline.

The pipeline is organized into three stages:

  • array_to_array: List of array transformation codecs
  • array_to_bytes: Single serialization codec (required)
  • bytes_to_bytes: List of compression codecs

Summary

Types

t()

@type t() :: %ExZarr.Codecs.PipelineV3.Pipeline{
  array_to_array: [map()],
  array_to_bytes: map(),
  bytes_to_bytes: [map()]
}