You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Well... Next thing you realize is that you want to also index by an arbitrary integer expression, e.g. being able to do something like D#{friends.[Expr] = <<"john">>}. Or firends.[Expr] in general. Essentially, this is similar to what another person suggested in #12 Please see my comments there.
for example:
D = [{name, <<"joe">>}, {friends, [<<"jack">>, <<"peter">>]}],
D1 = D#{friends.1 = <<"john">>},
D1 = [{name, <<"joe">>}, {friends, [<<"jack">>, <<"john">>]}].
The text was updated successfully, but these errors were encountered: