Packages

Patchwork is a library for calculating the difference between two data structures, and applying that difference as a patch. Think git patches for for Elixir data structures.

Current section

Files

Jump to
patchwork lib patchwork.ex
Raw

lib/patchwork.ex

defmodule Patchwork do
@moduledoc """
Documentation for `Patchwork`.
"""
@doc """
Hello world.
## Examples
iex> Patchwork.hello()
:world
"""
def hello do
:world
end
end