package diffast-misc

  1. Overview
  2. Docs
exception Empty
type 'a cell = {
  1. mutable content : 'a;
  2. mutable next : 'a cell;
}
type 'a t = {
  1. mutable length : int;
  2. mutable tail : 'a cell;
}
class 'a c : object ... end
OCaml

Innovation. Community. Security.