Packages
A library for validating transforming and parsing non-sandboxed data (e.g. CSV files)
Current section
Files
Jump to
Current section
Files
lib/schema/helpers/wrapped_fun.ex
defmodule DataQuacker.Schema.WrappedFun do
@moduledoc false
@type t :: %__MODULE__{
callable: (... -> any()),
arity: non_neg_integer()
}
@type t(arity) :: %__MODULE__{
callable: (... -> any()),
arity: arity
}
defstruct [:callable, :arity]
end