swh:1:snp:505c374fd75bb208ae4e9a54e64bb310bc49295e
Raw File
Tip revision: b2025653083d8b2ea6d7d03ff26dcb23209be256 authored by pecornilleau on 14 March 2024, 18:46:37 UTC
EVM/Bench: profiler output parsing uses regexp
Tip revision: b202565
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