8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dicts that have all the requiered keys should match, even if they have more keys. Currently the following code gets a MatchError:
dict
MatchError
def test({"a": a} as d): print(a, d) dict(a = 2, b = 3) |> test
This behaviour is found in Elixir and Elm, and I think it would be nice to have it in Coconut.