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 methods gets.ex
Raw

lib/skeleton/methods/gets.ex

defmodule MapSchema.Methods.Gets do
@moduledoc """
The module have the internal functionality of the methods get
"""
def generic_get(mapa, lista_fields) do
get_in(mapa, lista_fields)
end
end