list_diff 1.1.0
list_diff: ^1.1.0 copied to clipboard
📃 Calculates a minimal list of operations that convert one list into another if applied in order.
1.1.0 - 2019-10-09 #
- BREAKING CHANGE:
diffis now asynchronous. - Add support for running
diffon another isolate by simply settingrunOnSeparateIsolatetotrue. - Add
isolated.dartexample. - Better error messages.
- Revised doc comments.
- Add readme.
1.0.1 - 2019-10-09 #
- Remove unused dependency
dart:isolate.
1.0.0 - 2019-10-09 #
- Initial release featuring the
difffunction that takes two lists and returns a list ofOperations that turn the first into the second list if applied in order.