https://gitlab.com/tezos/tezos
Raw File
Tip revision: ba0ea4833dadc3a907cb00cee4c32a20a4ede7ba authored by martoon on 24 October 2023, 08:11:46 UTC
MIR: fixup! MIR: Add a log function for debug purposes
Tip revision: ba0ea48
iterator.mli
type bit = int

module Bit : sig
  type t

  val of_bytes_le : Bytes.t -> t

  val is_processed : t -> bool

  val of_bool_list : bool list -> t

  val next : t -> bit option

  val get_chunk : t -> ?default:int -> int -> bit list
end
back to top