package reedsolomon

  1. Overview
  2. Docs
module type Generator = sig ... end
module type Ops = sig ... end
module Make (G : Generator) : Ops with type t = G.Ops.t

builds log/antilog table representation over any field representation

module Int (Ops : Ops with type t = int array) : Ops with type t = int

specialised representation using integers

module type Params = sig ... end

simplified field specification using integers

module Params (P : Params) : Generator with type Ops.t = int array
module MakeInt (P : Params) : Ops with type t = int