-- | -- Module: Data.Poly -- Copyright: (c) 2019 Andrew Lelechenko -- Licence: BSD3 -- Maintainer: Andrew Lelechenko -- -- Dense polynomials and a 'Num'-based interface. -- {-# LANGUAGE PatternSynonyms #-} module Data.Poly ( Poly , VPoly , UPoly , unPoly -- * Num interface , toPoly , constant , pattern X , eval , deriv , integral ) where import Data.Poly.Uni.Dense hiding (quotRem)