swh:1:snp:505c374fd75bb208ae4e9a54e64bb310bc49295e
Raw File
Tip revision: 5ef1f25991c9944859f2e235654a9c84ddfa6a3e authored by Anne-Laure on 04 April 2024, 13:11:43 UTC
Tezt/Dal.test_gc_with_all_profiles: also wait for connection between producer & observer
Tip revision: 5ef1f25
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