package irmin
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
  Irmin, a distributed database that follows the same design principles as Git
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
  
    
      irmin-3.7.2.tbz
    
    
        
    
  
  
  
    
  
  
    
  
        sha256=6aa5ba4c6a0233747d4bd3ab396f2b3a33bb80f9d8ed4a178c83a035033c0e52
    
    
  sha512=8a5506a57e8569a11c883ca25b3c60ae7a9a03c2da111668193d7b4296434c43f1a310e78f189e4b38c234da790259d2961c6a0ae481282c18bb97f618fccfb6
    
    
  doc/irmin.data/Irmin_data/Fixed_size_string_set/index.html
Module Irmin_data.Fixed_size_string_setSource
Mutable sets of strings with a common length.
The type of mutable sets of fixed-length strings.
Source
val create : 
  elt_length:int ->
  ?initial_slots:int ->
  ?hash:(elt -> int) ->
  ?hash_substring:(Bigstringaf.t -> off:int -> len:int -> int) ->
  ?null:string ->
  unit ->
  tcreate builds an empty set of fixed-length strings. The parameters are as follows:
elt_length: the length of each element string in bytes;
initial_slots: the minimum number of slots contained in the initial internal buffer (NOTE: the actual number of slots will be the least power of two greater than or equal toinitial_buffer. This is not the same as the number of elements that can fit inside the buffer, which also depends on the maximum load factor);
hash/hash_substring: functions to use for placing elements inside the internal buffer (given that the element is contained in a string or a bigstring respectively). The stored elements must have uniformly distributedhashresults for good performance, and the two hash functions must be equivalent. Defaults toHashtbl.hash(and an equivalent function on substrings).
add t elt adds elt to the set t and returns `Ok if elt is not already a member of t, otherwise returns `Duplicate and leaves the hashset unchanged.
invariant f t checks the internal invariants of t and calls f on every element contained within. Exposed for testing.
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >