This file is indexed.

/usr/lib/ocaml/variantslib/variant.mli is in libvariants-camlp4-dev 109.15.03-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
(** OCaml variant type. *)

type 'constructor t = {
  name : string;
  (* the position of the constructor in the type definition, starting from 0 *)
  rank : int;
  constructor : 'constructor
}