]> Git — Sourcephile - haskell/symantic.git/blob - Language/Symantic/Type/Unit.hs
init
[haskell/symantic.git] / Language / Symantic / Type / Unit.hs
1 {-# LANGUAGE FlexibleContexts #-}
2 {-# LANGUAGE FlexibleInstances #-}
3 {-# LANGUAGE PatternSynonyms #-}
4 {-# LANGUAGE ScopedTypeVariables #-}
5 {-# LANGUAGE TypeFamilies #-}
6 {-# OPTIONS_GHC -fno-warn-orphans #-}
7 module Language.Symantic.Type.Unit where
8
9 import Data.Proxy
10 import Language.Symantic.Type.Common
11
12 -- * Type 'Type_Unit'
13 -- | The @()@ type.
14 type Type_Unit = Type_Type0 (Proxy ())
15
16 pattern Type_Unit :: Type_Unit root ()
17 pattern Type_Unit = Type_Type0 Proxy
18
19 instance -- String_from_Type
20 String_from_Type (Type_Unit root) where
21 string_from_type _ = "()"
22
23 -- | Inject 'Type_Unit' within a root type.
24 type_unit :: Lift_Type_Root Type_Unit root => root ()
25 type_unit = type_type0