File tree Expand file tree Collapse file tree
src/commonMain/kotlin/io/github/petertrr/diffutils Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,26 +62,6 @@ public fun diff(
6262 includeEqualParts = includeEqualParts,
6363 )
6464
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-
8565/* *
8666 * Computes the difference between the original and target list of elements.
8767 *
You can’t perform that action at this time.
0 commit comments