package diffast-misc

  1. Overview
  2. Docs
Miscellaneous functions for Diff/AST

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.4.tar.gz
sha256=f58dc5326c1698e22b84e3b808e6008228071f5796cda65433106e0d42c0dad5
sha512=8e451ab99433ef479c7d3aa0396bab6650894a2c3282e72cc65014d61f59dde578020d4bc9d423045e66d1d4592b58e877d7bd830788aeb96e5fa4ba534b4b78

doc/diffast-misc/Diffast_misc/LLL/index.html

Module Diffast_misc.LLL

type 'a cell = {
  1. mutable content : 'a;
  2. mutable prev : 'a cell;
  3. mutable next : 'a cell;
}
type 'a t = {
  1. mutable head : 'a cell;
  2. mutable length : int;
}
class 'a c : int -> object ... end