Packages

A collection of helpers to operate on nested maps. See README for the complete list of helpers. The test suite is also helpful.

Current section

Files

Jump to
digger lib protocols dasher_protocol.ex
Raw

lib/protocols/dasher_protocol.ex

defprotocol Digger.Dasher do
@moduledoc """
Documentation for Digger.Dasher Protocol
"""
@fallback_to_any true
alias Digger.Types
@doc """
'Dasherize' a valid Types.data_type according to the protocol implementation
"""
@spec dasherize(Types.data_type) :: Types.valid_return_type
def dasherize(data_type)
end