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
template <typename Record> DifferenceView<Record> CollectDifferences(Record const& left, Record const& right) noexcept;
where DifferenceView<T> holds a reference to the old and new value of each element that has changed from left to right.
DifferenceView<T>
left
right
This can be used to easily visualize a before/after state when changing a record in the table.
The text was updated successfully, but these errors were encountered:
Can be implemented via contour-terminal/reflection-cpp#14
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
where
DifferenceView<T>
holds a reference to the old and new value of each element that has changed fromleft
toright
.Example applications
This can be used to easily visualize a before/after state when changing a record in the table.
The text was updated successfully, but these errors were encountered: