ligo/vendors/ligo-utils/simple-utils/x_string.ml

12 lines
230 B
OCaml
Raw Normal View History

2020-04-27 13:30:59 +04:00
type t =
Standard of string
| Verbatim of string
let pp ppf = function
Standard s -> Format.fprintf ppf "%S" s
| Verbatim v -> Format.fprintf ppf "{|%s|}" v
let extract = function
Standard s -> s
| Verbatim v -> v