swh:1:snp:505c374fd75bb208ae4e9a54e64bb310bc49295e
Raw File
Tip revision: 53fd3c6c92c20e029ac3b6dd83fe734e24bf4606 authored by Albin Coquereau on 04 October 2023, 13:47:33 UTC
change: add entry for new rpcs and breaking changes for monitoring
Tip revision: 53fd3c6
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