View Source Igniter.Code.Map (igniter v0.3.58)
Utilities for working with maps.
Summary
Functions
Puts a value into nested maps at the given path
Puts a value at a path into a map, calling updater
on the zipper at the value if the key is already present
Puts a key into a map, calling updater
on the zipper at the value if the key is already present
Functions
Puts a value into nested maps at the given path
@spec put_in_map( Sourceror.Zipper.t(), [term()], term(), (Sourceror.Zipper.t() -> {:ok, Sourceror.Zipper.t()} | :error) | nil ) :: {:ok, Sourceror.Zipper.t()} | :error
Puts a value at a path into a map, calling updater
on the zipper at the value if the key is already present
@spec set_map_key(Sourceror.Zipper.t(), term(), term(), (Sourceror.Zipper.t() -> {:ok, Sourceror.Zipper.t()} | :error)) :: {:ok, Sourceror.Zipper.t()} | :error
Puts a key into a map, calling updater
on the zipper at the value if the key is already present