blob: 2cfb4c92081fbd1e75623a42e986c6cdc6c3d89c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{-# LANGUAGE Unsafe #-}
{-# LANGUAGE NoImplicitPrelude #-}
-----------------------------------------------------------------------------
-- |
-- Module : Data.Coerce
-- Copyright : (c) The University of Glasgow 2001
-- License : BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer : libraries@haskell.org
-- Stability : provisional
-- Portability : portable
--
-- Safe coercions between data types.
--
-- More in-depth information can be found on the
-- <https://gitlab.haskell.org/ghc/ghc/wikis/roles Roles wiki page>
--
-- @since 4.7.0.0
-----------------------------------------------------------------------------
module Data.Coerce
( -- * Safe coercions
coerce, Coercible
) where
import GHC.Prim (coerce)
import GHC.Types (Coercible)
-- The import of GHC.Base is for build ordering; see Notes in GHC.Base for
-- more info.
import GHC.Base ()
|