ListPolynomial

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

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