package rpmfile

  1. Overview
  2. Docs

Source file 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
OCaml

Innovation. Community. Security.