Vcs.File_contents
type t = Vcs.File_contents.t
include Ppx_hash_lib.Hashable.S with type t := t
val hash_fold_t : t Base__Ppx_hash_lib.hash_fold
include module type of Vcs.File_contents with type t := t
val hash : t -> int
val seeded_hash : int -> t -> int
val sexp_of_t : t -> Sexplib0.Sexp.t
val create : string -> t
create file_contents
returns a t
representing the given file contents.
val to_string : t -> string
to_string s
is a convenient wrapper for (s :> string)
for use with map
functions.