package bencode

  1. Overview
  2. Docs
type t = [
  1. | `BeginDict
  2. | `BeginList
  3. | `End
  4. | `I of int
  5. | `S of string
]
type token = t
type !'a sequence = ('a -> unit) -> unit
val to_string : t -> string
module Encode : sig ... end
module Decode : sig ... end
module Easy : sig ... end