Arrow.Type.Time (Arrow v0.1.0)

Copy Markdown

Time-of-day column. The Arrow FlatBuffers table parameterises both the bit width and the unit:

  • bit_width: 32 with :second or :millisecond (Time32).
  • bit_width: 64 with :microsecond or :nanosecond (Time64).

Summary

Types

bit_width()

@type bit_width() :: 32 | 64

t()

@type t() :: %Arrow.Type.Time{bit_width: bit_width(), unit: unit()}

unit()

@type unit() :: :second | :millisecond | :microsecond | :nanosecond