We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some common tasks:
It would be nice to have some clever high-level API for searching/matching certain constructs.
The text was updated successfully, but these errors were encountered:
Another idea:
There may be non-semantic nodes present, so a caller can't just iterate through every pair of m.Children().
m.Children()
Maybe this is implemented as:
type KeyVal struct { Key Node Val Node } func (m *MapNode) KeyVals() []*KeyVal
Or you could have an iterator, which might be more efficient if you're only looking for one key, say:
kv := m.KeyVals() for kv.Next() { key, val := kv.KeyVal() }
Sorry, something went wrong.
No branches or pull requests
Some common tasks:
It would be nice to have some clever high-level API for searching/matching certain constructs.
The text was updated successfully, but these errors were encountered: