mroch / ocaml-vlq

A library to encode/decode numbers in OCaml.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ocaml-vlq

A simple library for encoding variable-length quantities.

It currently supports writing a base64-encoded integer to a Buffer. Patches implementing other forms of encoding are welcome!

Example

let buf = Buffer.create 10 in
Vlq.Base64.encode buf 123456789;
Buffer.contents buf (* "qxmvrH" *)

let stream = Stream.of_string "qxmvrH" in
Vlq.Base64.decode stream (* 123456789 *)

This encoding can be used to generate JavaScript sourcemaps.

License

ocaml-vlq is MIT licensed, as found in the LICENSE file.

About

A library to encode/decode numbers in OCaml.

License:MIT License


Languages

Language:OCaml 97.4%Language:Standard ML 2.6%