MCPcopy Index your code
hub / github.com/ReZeroS/git / DiffAlgorithm

Interface DiffAlgorithm

src/main/java/club/qqtim/diff/algorithm/DiffAlgorithm.java:10–20  ·  view source on GitHub ↗

@author rezeros.github.io

Source from the content-addressed store, hash-verified

8 * @author rezeros.github.io
9 */
10public interface DiffAlgorithm {
11
12 /**
13 * convert from content to target content
14 * @param fromLineObjects from content
15 * @param targetLineObjects target content
16 * @return convert short edit script
17 */
18 List<LineObject> diff(List<LineObject> fromLineObjects, List<LineObject> targetLineObjects);
19
20}

Callers 1

diffBlobsMethod · 0.65

Implementers 1

MyersDiffsrc/main/java/club/qqtim/diff/algorith

Calls

no outgoing calls

Tested by

no test coverage detected