File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed
src/commonMain/kotlin/io/github/petertrr/diffutils Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -62,26 +62,6 @@ public fun diff(
62
62
includeEqualParts = includeEqualParts,
63
63
)
64
64
65
- /* *
66
- * Computes the difference between the source and target list of elements using the Myers algorithm.
67
- *
68
- * @param source The original elements
69
- * @param target The target elements
70
- * @param equalizer The equalizer to replace the default compare algorithm [Any.equals].
71
- * If `null`, the default equalizer of the default algorithm is used.
72
- * @return The patch describing the difference between the source and target sequences
73
- */
74
- public fun <T > diff (
75
- source : List <T >,
76
- target : List <T >,
77
- equalizer : DiffEqualizer <T >,
78
- ): Patch <T > =
79
- diff(
80
- source = source,
81
- target = target,
82
- algorithm = MyersDiff (equalizer),
83
- )
84
-
85
65
/* *
86
66
* Computes the difference between the original and target list of elements.
87
67
*
You can’t perform that action at this time.
0 commit comments