Packages

Simple, agile, map schema in elixir with type checking, custom types with casting and validation and with json encoding

Current section

Files

Jump to
map_schema lib skeleton utils utils.ex
Raw

lib/skeleton/utils/utils.ex

defmodule MapSchema.Utils do
@moduledoc """
The module have the utils functions.
"""
@doc """
Take list of fields and build a full name.
"""
def get_field_name(lista_fields) do
lista_fields |> Enum.join("_")
end
end