Make the change type be generic over any T rather &T (#31)
This makes the interface of this crate more flexible as the utility methods such as `iter_changes` now also work if a container does not contain references.
This commit is contained in:
parent
0b8e237280
commit
a3e10af892
7 changed files with 75 additions and 37 deletions
|
|
@ -2,6 +2,12 @@
|
|||
|
||||
All notable changes to similar are documented here.
|
||||
|
||||
## Unreleased
|
||||
|
||||
* Change the `Change` type and associated methods to work on any `T: Clone` instead
|
||||
of `&T`. This makes the `iter_changes` method also work on slices of integers
|
||||
or other values.
|
||||
|
||||
## 1.3.0
|
||||
|
||||
* Performance improvements for the LCS algorithm.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue