Module Utils.Selector

type 'a t =
  1. | All
  2. | None
  3. | Filter of 'a -> bool
  4. | Union of 'a t * 'a t
  5. | Intersect of 'a t * 'a t