{-# LANGUAGE NoImplicitPrelude, NoMonomorphismRestriction #-}

module Panda.Helper.PreludeEnv  (
    module MPSUTF8
  , module Prelude
  , (>)
  , strip
) where

import Prelude hiding ((.), (/), (^), id, span, readFile, writeFile, div, (>))
import MPSUTF8 hiding (base, col, date, strip)
import qualified MPSUTF8 as MPS
import Control.Arrow ((>>>))

(>) = (>>>)
infixl 8 >

strip x = MPS.strip (x.u2b) .b2u