This file is indexed.

/usr/lib/ocaml/gsl/gsl_qrng.mli is in libocamlgsl-ocaml-dev 1.19.1-1.

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
27
28
29
30
31
32
33
(* gsl-ocaml - OCaml interface to GSL                       *)
(* Copyright (©) 2002-2012 - Olivier Andrieu                *)
(* Distributed under the terms of the GPL version 3         *)

(** Quasi-Random Sequences *)

type qrng_type =
  | NIEDERREITER_2
  | SOBOL

type t
val make : qrng_type -> int -> t

external init  : t -> unit 
    = "ml_gsl_qrng_init" 

external get : t -> float array -> unit
    = "ml_gsl_qrng_get"

external sample : t -> float array
    = "ml_gsl_qrng_sample"

external name : t -> string
    = "ml_gsl_qrng_name"

external dimension : t -> int
    = "ml_gsl_qrng_dimension"

external memcpy : src:t -> dst:t -> unit
    = "ml_gsl_qrng_memcpy"

external clone : t -> t
    = "ml_gsl_qrng_clone"