package redis-async

  1. Overview
  2. Docs
module type S = sig ... end
module String : S with type t = string
module Int : S with type t = int
module Float : S with type t = float
module Make_stringable (T : Core.Stringable.S) : S with type t := T.t
module Make_binable (T : Core.Binable.S) : S with type t := T.t