diffast-misc
Diffast_misc.LLL
type 'a cell = {
mutable content : 'a;
mutable prev : 'a cell;
mutable next : 'a cell;
}
type 'a t = {
mutable head : 'a cell;
mutable length : int;
class 'a c : int -> object ... end