package bencode

  1. Overview
  2. Docs
Bencode (`.torrent` file format) reader/writer in OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

2.0.tar.gz
md5=80a4d59a246c31df45a42779c777bb28
sha512=687544db98ca47ecd55c8235e751b04df58fd5aba1270dcc93e19629f483f33232ac3779c0e07d0fdb67ea958156113143b0bd3b8640478928b591092d327d12

doc/bencode/Bencode_types/index.html

Module Bencode_typesSource

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