Matt Bray
Matt Bray
* Add `button'` (happy to rename) for arbitray clickable widgets * `button` handles only `` `Left`` clicks
Fixes #30. Depends on https://github.com/haskell-servant/servant/pull/866.
Hi, I use `dune-release` for [`ocaml-decoders`](https://github.com/mattjbray/ocaml-decoders). It's great! Recently I started using `(generate_opam_files true)`. `dune-release` with no args now picks `decoders-yojson` as the distribution name, even though I have `(name...
Allows libraries using `servant-foreign` (e.g. `servant-elm`) to generate client functions with argument lists in a consistent order. See https://github.com/mattjbray/servant-elm/issues/30#issuecomment-347035299 for the motivation.
Add [`CGDisplay::displays_with_point`](https://developer.apple.com/documentation/coregraphics/1454385-cggetdisplayswithpoint) and [`CGDisplay::displays_with_rect`](https://developer.apple.com/documentation/coregraphics/1456071-cggetdisplayswithrect). Uses the pattern from `CGDisplay::active_displays` to first get the count of matching displays, then intialize the result Vec with `vec![0; count as usize]`.
Draft until let operator shims are sorted. To do: - [ ] let operator shims for `Decode.Obj.Infix` - [ ] mli docs for `Decode.Obj`
A common pattern in bash is to start a long-running process in the background, do something, then kill it: ```bash foo & FOO_PID=$! # do other stuff kill $FOO_PID ```...
Add AppKit-defined UI Element Colors and Standard Colors. See https://developer.apple.com/documentation/appkit/nscolor#1651631