Plasma GitLab Archive
Projects Blog Knowledge

sig
  module StrMap :
    sig
      type key = string
      type +'a t
      val empty : 'a t
      val is_empty : 'a t -> bool
      val mem : key -> 'a t -> bool
      val add : key -> '-> 'a t -> 'a t
      val singleton : key -> '-> 'a t
      val remove : key -> 'a t -> 'a t
      val merge :
        (key -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c t
      val compare : ('-> '-> int) -> 'a t -> 'a t -> int
      val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
      val iter : (key -> '-> unit) -> 'a t -> unit
      val fold : (key -> '-> '-> 'b) -> 'a t -> '-> 'b
      val for_all : (key -> '-> bool) -> 'a t -> bool
      val exists : (key -> '-> bool) -> 'a t -> bool
      val filter : (key -> '-> bool) -> 'a t -> 'a t
      val partition : (key -> '-> bool) -> 'a t -> 'a t * 'a t
      val cardinal : 'a t -> int
      val bindings : 'a t -> (key * 'a) list
      val min_binding : 'a t -> key * 'a
      val max_binding : 'a t -> key * 'a
      val choose : 'a t -> key * 'a
      val split : key -> 'a t -> 'a t * 'a option * 'a t
      val find : key -> 'a t -> 'a
      val map : ('-> 'b) -> 'a t -> 'b t
      val mapi : (key -> '-> 'b) -> 'a t -> 'b t
    end
  type brange = {
    br_index : int64;
    br_length : int64;
    br_datanodes : int64 Plasma_blocks.StrMap.t;
  }
  module Brange :
    sig
      type key = int64
      type t = brange
      val merge : t -> t -> t option
      val split : key -> t -> t * t
    end
  module Bset :
    sig
      type point = int64
      type key = point * point
      type value = brange
      type t
      val empty : t
      val add : key -> value -> t -> t
      val remove : key -> t -> t
      val sub : key -> t -> t
      val iter : (key -> value -> unit) -> t -> unit
      val fold : (key -> value -> '-> 'a) -> t -> '-> 'a
      val find : point -> t -> key * value
    end
  val bset_of_blocklist :
    Plasma_rpcapi_aux.blockinfo list -> Plasma_blocks.Bset.t
end
This web site is published by Informatikbüro Gerd Stolpmann
Powered by Caml