package amqp-client
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
  Amqp client base library
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
  
    
      2.2.2.tar.gz
    
    
        
    
  
  
  
    
  
  
    
  
        md5=52f327b5aea93f81fb2c7d91b56842cf
    
    
  sha512=2595170758f71d775a5e8247040391a0732cdf04bfeb5230f549987fa6428c653fa40bbf2123af077de9910716b5c3013327c34adf8c7449a58d43eaa1d4aad5
    
    
  doc/src/amqp-client.lib/option.ml.html
Source file option.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23(**/**) type 'a t = 'a option let get ~default = function | None -> default | Some v -> v let get_exn ?(exn=Invalid_argument "None") = function | None -> raise exn | Some v -> v let map_default ~default ~f = function | None -> default | Some v -> f v let map ~f = function | None -> None | Some v -> Some (f v) let iter ~f = function | None -> () | Some v -> f v (**/**)
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >