package batteries
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
On This Page
  
  
  A community-maintained standard library extension
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
  
    
      v3.5.0.tar.gz
    
    
        
    
  
  
  
    
  
  
    
  
        md5=e4b70d1a716f0aaba36f419f618d0a2e
    
    
  sha512=a31f1f8cf2c7c3c6c757f3bfae98ff61bb32bab6a1f1e215937df42bcfa447aad41a37edb28d7bcecb88b3838ed8bd57142bcf8e2d28e09bb538055fd8a3b72d
    
    
  doc/batteries.unthreaded/BatBounded/Make/index.html
Module BatBounded.Make
Functor to build an implementation of a bounded type given the bounded values definition M
Parameters
module M : BoundedTypeSignature
type base_u = M.base_tRaw unbounded type
type t = private M.tbounds defines the (min, max) bounds for the bounded range
extract x will return x as a value of type u. A similar result could be achieved with (x :> u)
map f x applies f to x. Returns Some y if x can be converted back to type base_u, otherwise returns None.
map2 f x y applies f to x and y. Returns Some z if x and y can be converted back to type base_u, otherwise returns None.
map_exn f x applies f to x. Returns y if x can be converted back to type base_u, otherwise raise an exception.
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
  On This Page