package core_kernel
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
  Industrial strength alternative to OCaml's standard library
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
  
    
      v0.12.2.tar.gz
    
    
        
    
  
  
  
    
  
  
    
  
        sha256=96750d5b097cdfcdf00a463e2c1083e3c62c1d92987a0751ca2cda3a1e09241f
    
    
  md5=afc0271c35437c883b3c75fb821fe470
    
    
  doc/core_kernel.balanced_reducer/Balanced_reducer/index.html
Module Balanced_reducer
A Balanced_reducer.t stores a mutable fixed-length sequence of optional values, and incrementally maintains the result of folding an associative operation (reduce) over the sequence as its elements change.
val sexp_of_t : 
  ('a -> Ppx_sexp_conv_lib.Sexp.t) ->
  'a t ->
  Ppx_sexp_conv_lib.Sexp.tinclude Base.Invariant.S1 with type 'a t := 'a t
val invariant : ('a -> unit) -> 'a t -> unitval create_exn : 
  ?sexp_of_a:('a -> Base.Sexp.t) ->
  Base.unit ->
  len:Base.int ->
  reduce:('a -> 'a -> 'a) ->
  'a tcreate_exn ~len ~reduce creates a balanced reducer of length len, all of whose elements are None. It raises if len < 1.
set_exn t i a updates the value at index i to Some a. It raises if i is out of bounds.
get_exn t i gets the value at index i. It raises if i is out of bounds, or set_exn t i has never been called.
val compute_exn : 'a t -> 'acompute_exn t computes the value of the fold. It raises if any values of the array are None.
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >