isPoly abstract method

bool isPoly([
  1. bool strict = false
])

Checks if the expression is a polynomial.

strict If true, requires strict polynomial form (no division by variables, non-negative integer exponents).

Implementation

bool isPoly([bool strict = false]);