package riot
An actor-model multi-core scheduler for OCaml 5
Install
Dune Dependency
Authors
Maintainers
Sources
riot-0.0.4.tbz
sha256=bd196369f74bbc42f23d262030d5fa04c03f5f00c46bf944f0dcbc193745976f
sha512=f1ca69e05b57e83a1bd173efe51b745d331355a83381e6068743a7626e45dcf515cdd8947180051bddfe9f5727c2732aa0f01a093b04cf33fa4081d32f24fd65
doc/src/riot.util/dashmap.ml.html
Source file dashmap.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
type ('k, 'v) t = { tbl : ('k * 'v) list Atomic.t } [@@unboxed] let create _size = { tbl = Atomic.make [] } let entries t = Atomic.get t.tbl let find t k = List.assoc_opt k (entries t) let find_by t fn = List.find_opt fn (entries t) let find_all_by t fn = List.find_all fn (entries t) let has_key t k = find t k |> Option.is_some let rec insert t k v = let tbl1 = entries t in let entry = (k, v) in if List.mem entry tbl1 then () else let tbl2 = (k, v) :: tbl1 in if Atomic.compare_and_set t.tbl tbl1 tbl2 then () else insert t k v let rec remove_by t fn = let tbl1 = entries t in let tbl2 = List.filter fn tbl1 in if Atomic.compare_and_set t.tbl tbl1 tbl2 then () else remove_by t fn let rec replace t k v = let tbl1 = entries t in let tbl2 = (k, v) :: List.remove_assoc k tbl1 in if Atomic.compare_and_set t.tbl tbl1 tbl2 then () else replace t k v
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>