ListPolynomial

fun <C> ListPolynomial(coefficients: KoneList<C>, reverse: Boolean = false): ListPolynomial<C>(source)
fun <C> ListPolynomial(vararg coefficients: C, reverse: Boolean = false): ListPolynomial<C>(source)

Constructs a ListPolynomial instance with provided coefficients. The collection of coefficients will be reversed if reverse parameter is true.