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 =
| Empty
| One of string
| Two of string * string
| More_than_two
val to_dyn : t -> Volgo_stdlib.Dyn.t
val split : string -> t