blob: c616885bb147cbfacb0f33331886729fdfa3610b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{-# LANGUAGE Trustworthy, ExplicitNamespaces #-}
-----------------------------------------------------------------------------
-- |
-- Module : Data.Kind
-- License : BSD-style (see the LICENSE file in the distribution)
--
-- Maintainer : libraries@haskell.org
-- Stability : stable
-- Portability : not portable
--
-- Basic kinds
--
-- @since 4.9.0.0
-----------------------------------------------------------------------------
module Data.Kind ( Type, Constraint, FUN ) where
import GHC.Prim
import GHC.Types
|