Module OpamFile.Pinned_legacy
Pinned package files (only used for migration from 1.2, the inclusive State module is now used instead)
type pin_option=|Version of OpamTypes.version|Source of OpamTypes.url
include IO_FILE with type t = pin_option OpamTypes.name_map
type t= pin_option OpamTypes.name_mapFile contents
val empty : tEmpty file
val write : t typed_file -> t -> unitWrite some contents to a file
val read : t typed_file -> tRead file contents. Raise an error if the file does not exist.
val read_opt : t typed_file -> t optionReturns
Noneon non-existing file
val safe_read : t typed_file -> tRead file contents. Return
emptyif the file does not exist.
val read_from_channel : ?filename:t typed_file -> Stdlib.in_channel -> tval read_from_string : ?filename:t typed_file -> string -> tval write_to_channel : ?filename:t typed_file -> Stdlib.out_channel -> t -> unitval write_to_string : ?filename:t typed_file -> t -> string