traverse v0.1.2 Traverse.Ignore
When a transformer function returns this value the transformation of the containing datastructure will not contain it, in case the containing datastructure is a map the key is omitted in the transformation.
iex> Traverse.map([1, 2, %{a: 1}, {1, 2}], fn _ -> Traverse.Ignore end) [%{}, {}]