HostKit.Diff.Entry (host_kit v0.1.0-beta.5)

Copy Markdown View Source

One structured diff entry for plan review.

Summary

Types

op()

@type op() :: :add | :remove | :replace | :move | :copy | :test

path()

@type path() :: [String.t() | integer()]

t()

@type t() :: %HostKit.Diff.Entry{
  after: term(),
  before: term(),
  op: op(),
  path: path(),
  sensitive: boolean()
}

Functions

render_path(arg1)

@spec render_path(t() | path()) :: String.t()