Packages

Elixir for-comprehension that goes beyond the lists

Current section

Files

Jump to
bindable lib bindable pure implementation list.ex
Raw

lib/bindable/pure/implementation/list.ex

defimpl Bindable.Pure, for: List do
@spec of(list(a), a) :: list(a) when a: var
def of(_, a), do: [a]
end