You can search for identifiers within the package.
in-package search v0.2.0
A simple diffing algorithm
type diff =
| Deleted of string array
| Added of string array
| Equal of string array
Represents the change or lack of change in a line or character between the old and new version.
type t = diff list
List of diffs which is the return value of the main function.
val get_diff : string array -> string array -> t
Returns a list of diffs between two arrays