OCaml Weekly News, 30 Apr 2024
OCaml Planet
by Caml Weekly News
1w ago
..read more
Visit website
OCaml Backtraces on Uncaught Exceptions
OCaml Planet
by Louis Gesbert
2w ago
let rec replace = function | [] -> [] | w :: words -> List.assoc w dict :: words let () = let words = Array.to_list Sys.argv in List.iter print_endline (replace words ..read more
Visit website
Under the Hood: Developing Multicore Property-Based Tests for OCaml 5
OCaml Planet
by Tarides
2w ago
let show_cmd cmd = match cmd with | To_list -> "To_list" | Sort -> "Sort" | Set (x, y) -> Printf.sprintf "Set (%i, %F)" x y let floatarray_size = 12 let init_sut () = Float.Array.make floatarray_size 1.0 let cleanup _ = () let init_state = List.init floatarray_size (fun _ -> 1.0) let next_state f s = match f with | To_list -> s | Sort -> List.sort Float.compare s | Set (i,f) -> List.mapi (fun j f' -> if i=j then f else f') s let postcond f (s:float list) res = match f, res with | To_list, Res ((List Float,),fs) -> List.equal Float.equal fs s | Sort, Res ((Unit,),r ..read more
Visit website
OCaml Weekly News, 23 Apr 2024
OCaml Planet
by Caml Weekly News
2w ago
..read more
Visit website
Creating the SyntaxDocumentation Command - Part 1: Merlin
OCaml Planet
by Tarides
2w ago
let get_syntax_doc cursor_loc node = match node with | (, Type_kind Ttype_variant ) :: (, Type_declaration ) :: -> Some { name = "Type Variant"; description = "Represent's data that may take on multiple different forms."; documentation = "https://v2.ocaml.../typev.html"; } ... | -> None ..read more
Visit website
A Preview of Universal Libraries in Dune
OCaml Planet
by Melange Blog
2w ago
..read more
Visit website
What's 2024 brought to Melange so far?
OCaml Planet
by Melange Blog
2w ago
..read more
Visit website
Announcing Melange 3
OCaml Planet
by Melange Blog
2w ago
..read more
Visit website
OCaml Weekly News, 16 Apr 2024
OCaml Planet
by Caml Weekly News
3w ago
..read more
Visit website
Speeding up MirageVPN and use it in the wild
OCaml Planet
by Robur Cooperative
3w ago
Performance engineering of MirageVPN, speeding it up by a factor of 25 ..read more
Visit website

Follow OCaml Planet on FeedSpot

Continue with Google
Continue with Apple
OR