poly-0.2.0.0: src/Data/Poly.hs
-- |
-- Module: Data.Poly
-- Copyright: (c) 2019 Andrew Lelechenko
-- Licence: BSD3
-- Maintainer: Andrew Lelechenko <andrew.lelechenko@gmail.com>
--
-- 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)