package bencode

  1. Overview
  2. Docs

Source file bencode_types.ml

1
2
3
4
5
type t =
  | Integer of int64
  | String of string
  | List of t list
  | Dict of (string * t) list