diff options
Diffstat (limited to 'libraries/base/Prelude.hs')
-rw-r--r-- | libraries/base/Prelude.hs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libraries/base/Prelude.hs b/libraries/base/Prelude.hs index 12fe189a8b..12a3d8f59a 100644 --- a/libraries/base/Prelude.hs +++ b/libraries/base/Prelude.hs @@ -151,14 +151,6 @@ import GHC.Real import GHC.Float import GHC.Show -infixr 0 $! - --- ----------------------------------------------------------------------------- --- Miscellaneous functions - --- | Strict (call-by-value) application, defined in terms of 'seq'. -($!) :: (a -> b) -> a -> b -f $! x = let !vx = x in f vx -- see #2273 #ifdef __HADDOCK__ -- | The value of @'seq' a b@ is bottom if @a@ is bottom, and otherwise |