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
I want to mimic the behavior of CollectionDifference, so I started with
extension Array where Element: Differentiable { public func diff(from other: Array) -> StagedChangeset<Array> { StagedChangeset(source: self, target: other) } }
And I'd like to implement Array.apply method, but I'm not sure what is the right way to apply StagedChangeset to an existing collection...
Array.apply
The text was updated successfully, but these errors were encountered:
Also I'm looking for how to implement Array.diff(from:by:) method
Array.diff(from:by:)
Sorry, something went wrong.
No branches or pull requests
Checklist
Question
I want to mimic the behavior of CollectionDifference, so I started with
And I'd like to implement
Array.apply
method, but I'm not sure what is the right way to apply StagedChangeset to an existing collection...The text was updated successfully, but these errors were encountered: