package moonpool
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Pools of threads supported by a pool of domains
Install
dune-project
Dependency
Authors
Maintainers
Sources
moonpool-0.11.tbz
sha256=0f3d42753c2636a6a55427af89d2574b08a29c32100f2002ae3e47f6e4d23ff1
sha512=7fa651570493ddd7c594eb46b76782610da6a6823e5178c2b20ceafe2f159649caedaac01e975428605de865d3dff9008a798090cec77c909477a86c04532709
doc/src/moonpool/exn_bt.ml.html
Source file exn_bt.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30type t = exn * Printexc.raw_backtrace let[@inline] make exn bt : t = exn, bt let[@inline] exn (e, _) = e let[@inline] bt (_, bt) = bt let show self = let bt = Printexc.raw_backtrace_to_string (bt self) in let exn = Printexc.to_string (exn self) in if bt = "" then exn else Printf.sprintf "%s\n%s" exn bt let pp out self = Format.pp_print_string out (show self) let[@inline] raise (e, bt) = Printexc.raise_with_backtrace e bt let[@inline] get exn = let bt = Printexc.get_raw_backtrace () in make exn bt let[@inline] get_callstack n exn = let bt = Printexc.get_callstack n in make exn bt type nonrec 'a result = ('a, t) result let[@inline] unwrap = function | Ok x -> x | Error ebt -> raise ebt
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>