swh:1:snp:505c374fd75bb208ae4e9a54e64bb310bc49295e
Raw File
Tip revision: 1f77ed544f59a0160735c3874c33234c13817d4d authored by Philippe Wang on 04 October 2023, 21:22:13 UTC
(to be reverted) temporary reorganize CI for rust-based codec
Tip revision: 1f77ed5
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