module type Accessors_intf = sig
#
module Infix : sig
#
val (=~) : string
-> t -> bool
end
#
module Match : sig
#
val by_index :
t -> int
-> string
#
val by_name :
t -> string
-> string
end
#
module Template : sig
#
val apply :
t -> string
-> string
end
with type t :=
Template.
t
#
val matches :
t -> string
-> bool
#
val apply :
t -> string
-> Match.
t option
#
val split_at :
t -> string
-> string list
end