sealed trait Op
An ADT for all "operations" the diff algorithm can derive.
Operations don't contain any elements themselves, they only hold indices into the base and target sequences
for maximum efficiency.
An ADT for all "operations" the diff algorithm can derive.
Operations don't contain any elements themselves, they only hold indices into the base and target sequences
for maximum efficiency.
If you need something that holds all data required to transform base into target, including the actual
elements, check out Patch.
- Companion
- object