Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
For handling diffs abstractly. A range is a subarray of the two original arrays with a constructor defining its relationship to the two original arrays. A Same
range contains a series of elements which can be found in both arrays. A Next
range contains elements found only in the second array, while an Prev
range contains elements found only in the first array.
A Replace
contains two arrays: elements in the first output array are elements found only in the first input array, which have been replaced by elements in the second output array, which are elements found only in the second input array.
val all_same : 'a t list -> bool
all_same ranges
returns true if all ranges
are Same
prev_only ranges
drops all Next ranges and converts all Replace ranges to Prev ranges.
next_only ranges
drops all Prev ranges and converts all Replace ranges to Next ranges.
val prev_size : 'a t -> int
Counts number of elements.
val next_size : 'a t -> int
module Stable : sig ... end