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
During batch processing it should be possible to remove unnecessary changes, e.g. for a change ~A that completely reverses A:
optimize(A, B, ~A, C) -> (B, C)
Examples include addition and later removal of the same set item; replacement of a list index; replacement or removal of a map key.
This is valuable when applying changes to backing stores since you can simply skip useless operations.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
During batch processing it should be possible to remove unnecessary changes, e.g. for a change ~A that completely reverses A:
Examples include addition and later removal of the same set item; replacement of a list index; replacement or removal of a map key.
This is valuable when applying changes to backing stores since you can simply skip useless operations.
The text was updated successfully, but these errors were encountered: