This file is indexed.

/usr/lib/ocaml/pgocaml/PGOCaml_aux.mli is in libpgocaml-ocaml-dev 2.2-2build1.

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
16
17
18
19
20
21
22
23
24
25
26
module String :
  sig
    include module type of String

    val starts_with : string -> string -> bool
    val join : string -> string list -> string
    val implode : char list -> string
    val fold_left : ('a -> char -> 'a) -> 'a -> string -> 'a
    val init: int -> (int -> char) -> string
  end

module Option :
  sig
    val default : 'a -> 'a option -> 'a
    val get : 'a option -> 'a
    val map : ('a -> 'b) -> 'a option -> 'b option
  end


module List :
  sig
    include module type of List

    val iteri : (int -> 'a -> unit) -> 'a list -> unit
    val mapi : (int -> 'a -> 'b) -> 'a list -> 'b list
  end