You can search for identifiers within the package.
in-package search v0.2.0
Types to manipulate differences between two files.
type index =
| One of int
one line
| Many of int * int
many lines, we have the first and the last
Index in a file.
type diff =
| Add of index * index * string
for <index>a<index> and the added text
| Delete of index * index * string
for <index>d<index> and the deleted text
| Change of index * string * index * string
for <index>c<index> and the deleted and added texts
Representation of one difference.
type diffs = diff list
Differences between two files.