Warpath.Element.Path.dotify

You're seeing just the function dotify, go back to Warpath.Element.Path module for more information.

Specs

dotify(acc()) :: binary()

Transform path tokens into a jsonpath dot-notation representation.

Example

iex> acc = [{:property, "name"}, {:root, "$"}]
...> Warpath.Element.Path.dotify(acc)
"$.name"