base-4.22.0.0: src/GHC/Num.hs
{-# OPTIONS_HADDOCK not-home #-}
-- |
-- Module : GHC.Num
-- Copyright : (c) The University of Glasgow 1994-2002
-- License : see libraries/base/LICENSE
--
-- Maintainer : ghc-devs@haskell.org
-- Stability : internal
-- Portability : non-portable (GHC Extensions)
--
-- The 'Num' class and the 'Integer' type.
--
module GHC.Num
( Num(..)
, subtract
, quotRemInteger
, module GHC.Num.Integer
, module GHC.Num.Natural
)
where
import GHC.Internal.Num
import GHC.Num.Integer
import GHC.Num.Natural