Copyright | (C) 2017 Ryan Scott |
---|---|
License | BSD-style (see LICENSE) |
Maintainer | Ryan Scott |
Stability | experimental |
Portability | non-portable |
Safe Haskell | None |
Language | Haskell2010 |
Defines Sigma
, a dependent pair data type, and related functions.
Synopsis
- data Sigma (s :: Type) :: (s ~> Type) -> Type where
- type Σ (s :: Type) (t :: s ~> Type) = Sigma s t
- projSigma1 :: forall s t. SingKind s => Sigma s t -> Demote s
- projSigma2 :: forall s t r. (forall (fst :: s). (t @@ fst) -> r) -> Sigma s t -> r
- mapSigma :: Sing (f :: a ~> b) -> (forall (x :: a). (p @@ x) -> q @@ (f @@ x)) -> Sigma a p -> Sigma b q
- zipSigma :: Sing (f :: a ~> (b ~> c)) -> (forall (x :: a) (y :: b). (p @@ x) -> (q @@ y) -> r @@ ((f @@ x) @@ y)) -> Sigma a p -> Sigma b q -> Sigma c r
- data ΣSym0 s6989586621679353873
- data ΣSym1 (s6989586621679353873 :: Type) t6989586621679353874
- type ΣSym2 (s6989586621679353873 :: Type) (t6989586621679353874 :: (~>) s6989586621679353873 Type) = Σ s6989586621679353873 t6989586621679353874
Documentation
projSigma1 :: forall s t. SingKind s => Sigma s t -> Demote s Source #
Project the first element out of a dependent pair.
projSigma2 :: forall s t r. (forall (fst :: s). (t @@ fst) -> r) -> Sigma s t -> r Source #
Project the second element out of a dependent pair.
In an ideal setting, the type of projSigma2
would be closer to:
projSigma2
::Sing
(sig ::Sigma
s t) -> t @@ ProjSigma1 sig
But promoting projSigma1
to a type family is not a simple task. Instead,
we do the next-best thing, which is to use Church-style elimination.
mapSigma :: Sing (f :: a ~> b) -> (forall (x :: a). (p @@ x) -> q @@ (f @@ x)) -> Sigma a p -> Sigma b q Source #
Map across a Sigma
value in a dependent fashion.
zipSigma :: Sing (f :: a ~> (b ~> c)) -> (forall (x :: a) (y :: b). (p @@ x) -> (q @@ y) -> r @@ ((f @@ x) @@ y)) -> Sigma a p -> Sigma b q -> Sigma c r Source #
Zip two Sigma
values together in a dependent fashion.
Defunctionalization symbols
data ΣSym1 (s6989586621679353873 :: Type) t6989586621679353874 Source #
Instances
SuppressUnusedWarnings (ΣSym1 s2 :: TyFun (s1 ~> Type) Type -> Type) Source # | |
Defined in Data.Singletons.Sigma suppressUnusedWarnings :: () Source # | |
type Apply (ΣSym1 s6989586621679353873 :: TyFun (s6989586621679353873 ~> Type) Type -> Type) (t6989586621679353874 :: s6989586621679353873 ~> Type) Source # | |