Module integer

Module integer 

Source
Expand description

Integer-based types with arbitrary length based on Z.

This module contains the type Z for integers with arbitrary length and constructions over it. Each struct provides examples regarding usage. In general you can mix Z’s with any type of rust integer, whenever the corresponding method takes as input integers of type Into<Z>, e.g. the standard rust integers.

Structs§

MatPolyOverZ
MatPolyOverZ is a matrix with entries of type PolyOverZ.
MatZ
MatZ is a matrix with entries of type Z.
PolyOverZ
PolyOverZ is a type of polynomial with arbitrarily many coefficients of type Z.
Z
Z is an arbitrary integer value.