XLE  v0.02.0
Classes | Enumerations
DiffMatchPatch Namespace Reference

Classes

class  CompatibilityExtensions
 
class  Diff
 
class  diff_match_patch
 
class  Patch
 

Enumerations

enum  Operation { DELETE, INSERT, EQUAL }
 

Enumeration Type Documentation

  • The data structure representing a diff is a List of Diff objects: {Diff(Operation.DELETE, "Hello"), Diff(Operation.INSERT, "Goodbye"), Diff(Operation.EQUAL, " world.")} which means: delete "Hello", add "Goodbye" and keep " world."