ligo/src/lib_data_encoding/binary_reader.mli
2018-05-24 15:43:15 +00:00

16 lines
951 B
OCaml

(**************************************************************************)
(* *)
(* Copyright (c) 2014 - 2018. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
(** This is for use *within* the data encoding library only. Instead, you should
use the corresponding module intended for use: {Data_encoding.Binary}. *)
val read: 'a Encoding.t -> MBytes.t -> int -> int -> (int * 'a) option
val of_bytes: 'a Encoding.t -> MBytes.t -> 'a option
val of_bytes_exn: 'a Encoding.t -> MBytes.t -> 'a