This file is indexed.

/usr/lib/ocaml/camlimages/geometry.mli is in libcamlimages-ocaml-dev 1:4.0.1-4build1.

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
 9
10
11
12
13
14
15
type size = Scale of float | Pixel of int | Guess
type aspect_opts = Keep_at_most | Keep_at_least | Dont_keep
type resize_switch = Always | Bigger_only | Smaller_only
type from = TopLeft | BottomRight | Center
type position = AtPixel of from * int | AtScale of from * float
type t = { geom_width : int; geom_height : int; geom_x : int; geom_y : int; }
type spec = {
  spec_width : size;
  spec_height : size;
  spec_aspect : aspect_opts;
  spec_switch : resize_switch;
  spec_x : int;
  spec_y : int;
}
val compute : spec -> int -> int -> t