Module Interest.Raw
A raw or "unfiltered" interest. Specifically, an Event_generator.t
can produce events given a buffer and a list of raw interests, which are typically then "filtered" by a Filter.t
(a filter takes a list of actual interests / Interest.t
s). An event will only ever match one Interest.Raw.t
(indeed, events are keyed by raw interests in Event_generator.t
) whereas it could match several distinct Interest.t
s (e.g., overlapping intervals)
type 'a t
=
|
Single of 'a
|
Group_point of 'a * 'a
|
Group_path of 'a * 'a Path.t
include Ppx_sexp_conv_lib.Sexpable.S1 with type 'a t := 'a t
val t_of_sexp : (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a t
val sexp_of_t : ('a -> Sexplib0.Sexp.t) -> 'a t -> Sexplib0.Sexp.t
module I : sig ... end