Reputation: 59
I'd like to know if it's possible in Elixir to guard for a specific protocol.
def some_fun(f) when implement?(f, Dict.Behaviour), do: ...
Or is there something to assert that f is specifically a HashDict for example ?
Thanks !
Upvotes: 1
Views: 596
Reputation: 51369
You can do:
iex> Enumerable.impl_for!([])
Enumerable.List
But it doesn't work in a guard. However, this is very often a bad practice, you should just invoke the protocol instead.
If you are worried specifically about HashDict, you can do: is_record(dict, HashDict)
and it should work on guards.
Upvotes: 5