Current section
Files
Jump to
Current section
Files
lib/xberg/table_diff.ex
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:4e21c71a5751b345136e5ca51dea30bbd3862f7fdc63aa50e6b36be84c454e0e
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.TableDiff do
@moduledoc "Cell-level changes for a pair of tables that share the same index."
@typedoc "Cell-level changes for a pair of tables that share the same index."
@type t :: %__MODULE__{
from_index: non_neg_integer(),
to_index: non_neg_integer(),
cell_changes: [Xberg.CellChange.t()]
}
defstruct from_index: 0,
to_index: 0,
cell_changes: []
end