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
We allow consumers of ArrayData to get the list of all children, we should also make it possible to get the list of child names.
ArrayData
Mostly useful for tools that want to interpret vortex files to have a more useful name then child[0], child[1] etc.
child[0], child[1]
The text was updated successfully, but these errors were encountered:
We sort of do this here, it wouldn't be hard to impl your own visitor to grab child names or we can augment this one
Sorry, something went wrong.
That's recursive though, I just want the immediate children
Like I want the names version of pub fn children(&self) -> Vec<ArrayData>
pub fn children(&self) -> Vec<ArrayData>
Was working on this as part of something else, see (#1710)
No branches or pull requests
We allow consumers of
ArrayData
to get the list of all children, we should also make it possible to get the list of child names.Mostly useful for tools that want to interpret vortex files to have a more useful name then
child[0], child[1]
etc.The text was updated successfully, but these errors were encountered: