package sanddb

  1. Overview
  2. Docs

Source file serializers.ml

1
2
3
4
5
6
7
8
9
10
module type Json_Serializer = sig
  type t
  val t_of_string : string -> t
  val string_of_t : ?len:int -> t -> string
end;;

module type Biniou_Serializer = sig
  type t
  val t_of_string : ?pos:int -> string -> t
  val string_of_t : ?len:int -> t -> string
end;;
OCaml

Innovation. Community. Security.