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
Currently, there is no way to simply mutate & remove the specific statements of Block. Some temporary works for this:
Block
block.filter_statements()
So, block.remove_statement(index: usize) would be cooler to remove a statement in a specific index of Block.
block.remove_statement(index: usize)
The text was updated successfully, but these errors were encountered:
remove_statement
Successfully merging a pull request may close this issue.
Currently, there is no way to simply mutate & remove the specific statements of
Block
. Some temporary works for this:block.filter_statements()
Block
through the vector excluding the statements you want to remove.So,
block.remove_statement(index: usize)
would be cooler to remove a statement in a specific index ofBlock
.The text was updated successfully, but these errors were encountered: