Module Testo_util.Tag_query

type t = Tag.query =
  1. | Has_tag of Tag.t
  2. | All
  3. | None
  4. | Not of t
  5. | And of t * t
  6. | Or of t * t
val parse : string -> (t, string) Stdlib.result
val match_ : Tag.t list -> t -> bool
val show : t -> string
val pp : Stdlib.Format.formatter -> t -> unit