Module Private.Arrow_split

Returns the parts of a string split by the separator " => ". We specialize for the only patterns that matter for the parsing logic.

type t =
  1. | Empty
  2. | One of string
  3. | Two of string * string
  4. | More_than_two
val to_dyn : t -> Volgo_stdlib.Dyn.t
val split : string -> t