fireproofsocks
Example of implementing Access protocol (behaviour?) in Struct
I stumbled across the desire to want to use get_in while accessing deeply nested parts of a custom struct while needing to provide a default value. I could make a simple defp function to achieve this, but I wanted to see how to handle it using the Access protocol, so I tried something like this:
get_in(my_struct, [:x, Access.key(:y, "my_default)])
Where my struct was shaped something like
%MyStruct{x: %{y: "My Value"}}
# or maybe
%MyStruct{x: %{}}
This results in an error:
** (UndefinedFunctionError) function MyStruct.fetch/2 is undefined (MyStruct does not implement the Access behaviour)
I have 2 followup questions to this:
- Is there an example somewhere in some library that demonstrates how to implement the Access behaviour?
- I’ve read somewhere that structs don’t implement this behaviour for performance reasons – what considerations should be made before implementing the behavior in a struct?
Thanks as always!
Marked As Solved
kip
Wasn’t quite sure what you were after. Probably you wanted:
iex> my_struct = %MyStruct{x: %{y: "this thing"}}
%MyStruct{x: %{y: "this thing"}}
iex> get_in(my_struct, [Access.key(:x), Access.key(:y, "my_default")])
"this thing"
Note that since :x is just a map you can do the following if you don’t need to supply a default (which you shouldn’t have to so since this is about a struct:
iex> get_in(my_struct, [Access.key(:x), :y])
"this thing"
Also Liked
kip
I think you’ll find this will do the trick:
iex> get_in(my_struct, [Access.key(:x, Access.key(:y, "my_default"))])
%{y: "My Value"}
You can wrap struct keys in Access.key/2 if required without implementing the whole Access protocol.








