copilot-language-2.2.1: src/Copilot/Language/Prelude.hs
--------------------------------------------------------------------------------
-- Copyright © 2011 National Institute of Aerospace / Galois, Inc.
--------------------------------------------------------------------------------
-- | Reexports 'Prelude' from package "base" hiding identifiers redefined by
-- Copilot.
{-# LANGUAGE Safe #-}
module Copilot.Language.Prelude
( module Prelude
) where
import Prelude hiding
( (++)
, (==), (/=)
, div, mod
, (<=), (>=), (<), (>)
, (&&)
, (^)
, (||)
, const
, drop
, not
, mod
, until
, sum
, max
, min
, (!!)
, cycle
, take
)
--------------------------------------------------------------------------------