CCSDS 121.0-B-3 Lossless Data Compression (Rice/Golomb coding)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocaml-linkedin: apply dune fmt

Pure formatting changes from `dune fmt`: doc comment placement moves
from above the binding to below it for `type`s, multi-line `match`
expressions collapse onto one line where they fit, and infix operator
applications pick up spaces (`Soup.($?)` -> `Soup.( $? )`). No
semantic changes.

+19 -1
+12 -1
README.md
··· 14 14 15 15 ## Installation 16 16 17 + Install with opam: 18 + 19 + ```sh 20 + $ opam install rice 17 21 ``` 18 - opam install rice 22 + 23 + If opam cannot find the package, it may not yet be released in the public 24 + `opam-repository`. Add the overlay repository, then install it: 25 + 26 + ```sh 27 + $ opam repo add samoht https://tangled.org/gazagnaire.org/opam-overlay.git 28 + $ opam update 29 + $ opam install rice 19 30 ``` 20 31 21 32 ## Usage
+4
dune
··· 1 1 (env 2 2 (dev 3 3 (flags :standard %{dune-warnings}))) 4 + 5 + (mdx 6 + (files README.md) 7 + (libraries rice))
+2
dune-project
··· 1 1 (lang dune 3.21) 2 + (using mdx 0.4) 2 3 (name rice) 3 4 4 5 (generate_opam_files true) ··· 21 22 (ocaml (>= 5.1)) 22 23 (alcotest (and (>= 1.7.0) :with-test)) 23 24 (alcobar :with-test) 25 + (mdx :with-test) 24 26 fmt))
+1
rice.opam
··· 16 16 "ocaml" {>= "5.1"} 17 17 "alcotest" {>= "1.7.0" & with-test} 18 18 "alcobar" {with-test} 19 + "mdx" {with-test} 19 20 "fmt" 20 21 "odoc" {with-doc} 21 22 ]