swh:1:snp:505c374fd75bb208ae4e9a54e64bb310bc49295e
Raw File
Tip revision: 798de6818ba9346eb1dd24e9c187f245517a42a0 authored by Marina Polubelova on 17 November 2023, 13:06:04 UTC
benches
Tip revision: 798de68
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