| Safe Haskell | Safe-Inferred |
|---|
Data.Algorithm.Diff3
Description
An implementation of a 3-way merge algorithm.
Documentation
A hunk is a collection of changes that occur in a document. A hunk can be some changes only in A, only in B, in both A & B (equally), or conflicting between A, B and the original document.
Constructors
| ChangedInA [a] | |
| ChangedInB [a] | |
| Both [a] | |
| Conflict [a] [a] [a] |