packages feed

papa-0.4.0: src/Papa/Base/Prelude.hs

{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -Wall #-}

module Papa.Base.Prelude (
  module P,
) where

import Prelude as P (
  Applicative,
  Bool (
    False,
    True
  ),
  Char,
  Double,
  Either (
    Left,
    Right
  ),
  Enum,
  Eq,
  FilePath,
  Float,
  Floating,
  Foldable,
  Fractional,
  Functor,
  IO,
  IOError,
  Int,
  Integer,
  Integral,
  Maybe (
    Just,
    Nothing
  ),
  Monad,
  Monoid,
  Num,
  Ord,
  Ordering (
    EQ,
    GT,
    LT
  ),
  Rational,
  Real,
  RealFloat,
  Show,
  ShowS,
  Traversable,
  Word,
  abs,
  acos,
  acosh,
  all,
  and,
  any,
  appendFile,
  asin,
  asinh,
  atan,
  atan2,
  atanh,
  break,
  ceiling,
  compare,
  cos,
  cosh,
  curry,
  cycle,
  decodeFloat,
  divMod,
  drop,
  dropWhile,
  either,
  elem,
  encodeFloat,
  even,
  exp,
  exponent,
  filter,
  floatDigits,
  floatRadix,
  floatRange,
  floor,
  fmap,
  foldMap,
  foldl,
  foldr,
  fromInteger,
  fromIntegral,
  fromRational,
  gcd,
  getChar,
  getContents,
  getLine,
  interact,
  ioError,
  isDenormalized,
  isIEEE,
  isInfinite,
  isNaN,
  isNegativeZero,
  lcm,
  lines,
  log,
  logBase,
  max,
  maybe,
  mempty,
  min,
  mod,
  negate,
  not,
  notElem,
  null,
  odd,
  otherwise,
  pi,
  product,
  properFraction,
  pure,
  putChar,
  putStr,
  putStrLn,
  quot,
  quotRem,
  readFile,
  readIO,
  realToFrac,
  recip,
  rem,
  replicate,
  round,
  scaleFloat,
  sequenceA,
  show,
  showParen,
  shows,
  showsPrec,
  significand,
  signum,
  sin,
  sinh,
  span,
  splitAt,
  sqrt,
  subtract,
  sum,
  take,
  takeWhile,
  tan,
  tanh,
  toInteger,
  toRational,
  traverse,
  truncate,
  uncurry,
  unlines,
  until,
  unwords,
  unzip3,
  words,
  writeFile,
  zip,
  zip3,
  zipWith,
  zipWith3,
  ($),
  (&&),
  (*),
  (**),
  (+),
  (-),
  (/),
  (/=),
  (<),
  (<$),
  (<$>),
  (<*>),
  (<=),
  (==),
  (>),
  (>=),
  (^),
  (^^),
  (||),
 )