mirage-tcversion
MirageOS type-classes
A set of functors and combinators to pretty-print (using sexplib), to convert to and from and JSON and Cstruct buffers.
# Tc.show (module Tc.S) "Hello world!";;
- : string = "\"Hello world!\""
# Tc.to_json (module Tc.App2(Tc.P)(Tc.I)(Tc.S)) (3, "foo");;
- : Ezjsonm.t = `A [`String "3"; `String "foo"]
A slightly more complex example, using autogen code instead of functor composition:
# camlp4o;;
# require "sexplib.syntax";;
# require "comparelib.syntax";;
# require "bin_prot.syntax";;
# module M = struct
type t = { foo: int; bar: string list } with sexp, bin_prot, compare
end;;
# module X = Tc.I0(M);;
# let t = { foo = 3; bar = [ "hello"; "world" ] };;
# Tc.to_json (module X) t;;
- : Ezjsonm.t =
`A
[`A [`String "foo"; `String "3"];
`A [`String "bar"; `A [`String "hello"; `String "world"]]]
# Tc.write_string (module X) t;;
- : string = "\003\002\005hello\005world"
Author | Thomas Gazagnaire |
---|---|
License | ISC |
Published | |
Homepage | https://github.com/mirage/mirage-tc |
Issue Tracker | https://github.com/mirage/mirage-tc/issues |
Maintainer | thomas@gazagnaire.org |
Dependencies |
|
Source [http] | https://github.com/mirage/mirage-tc/archive/0.1.0.tar.gz sha256=73032c4bf16fdf1c3ef84deab7034636665d79436b0737ae6eaa4f35850b419c md5=93a51194b72381af02ac698501b5a275 |
Edit | https://github.com/ocaml/opam-repository/tree/master/packages/mirage-tc/mirage-tc.0.1.0/opam |
Required by
- datakit<0.10.0