/usr/lib/ocaml/gsl/gsl_combi.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 | open Bigarray
type t = private {
n : int;
k : int;
data : (int, int_elt, c_layout) Bigarray.Array1.t
}
external _init_first : t -> unit = "ml_gsl_combination_init_first"
external _init_last : t -> unit = "ml_gsl_combination_init_last"
val make : int -> int -> t
val to_array : t -> int array
external prev : t -> unit = "ml_gsl_combination_prev"
external next : t -> unit = "ml_gsl_combination_next"
val valid : t -> bool
|