package reedsolomon

  1. Overview
  2. Docs
module type S = sig ... end

basic polynomials of 1 variable

module Make (E : Ops.OpsBase) : S with type t = E.t array and type elt = E.t

Basic polynomial representations. Coefficients are members of Ops.OpsBase (which effectively provide '+' and '*')