2020-04-27 13:30:59 +04:00
|
|
|
(*
|
|
|
|
Ligo_string represent string as they are writen in a ligo program,
|
|
|
|
delimited either with double quotes (standard) or with `{|...|}` (Varbatim)
|
|
|
|
*)
|
|
|
|
|
|
|
|
type t =
|
|
|
|
Standard of string
|
|
|
|
| Verbatim of string
|
|
|
|
|
2020-05-22 05:22:35 +04:00
|
|
|
val compare : ?compare:(string->string->int) -> t -> t -> int
|
2020-04-27 13:30:59 +04:00
|
|
|
val pp : Format.formatter -> t -> unit
|
|
|
|
val extract : t -> string
|