patch_make

Compute a list of patches to turn text1 into text2. A set of diffs will be computed. @param text1 Old text. @param text2 New text. @return List of Patch objects.

  1. Patch[] patch_make(string text1, string text2)
    patch_make
    (
    string text1
    ,
    string text2
    )
  2. Patch[] patch_make(Diff[] diffs)
  3. Patch[] patch_make(string text1, Diff[] diffs)

Meta