Signature
Example
import from Integer, DenseUnivariatePolynomial Integer; x := monom; p := x^3 + 2*x - 1; for term in p repeat { (c, n) := term; print << c << "," << n << newline }writes
1,3to the standard stream print.
2,1
-1,0
See Also