You can search for identifiers within the package.
in-package search v0.2.0
rpmfile
selector.ml
1 2 3 4 5 6 7 8 9 module type S = sig val select_header_tag : int -> bool val select_signature_tag : int -> bool end module All : S = struct let select_header_tag _ = true let select_signature_tag _ = true end
1 2 3 4 5 6 7 8 9
module type S = sig val select_header_tag : int -> bool val select_signature_tag : int -> bool end module All : S = struct let select_header_tag _ = true let select_signature_tag _ = true end