Skip to content

Commit 898c72c

Browse files
committedMar 6, 2019
documentation and updating changelog
1 parent 32e4111 commit 898c72c

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed
 

‎CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Version 0.1.5.0
1010

1111
* Add `allToAny` to *Data.Type.Predicate.Quantification*.
1212
* Add `PPMapV`, `EqBy`, and `IsTC` to *Data.Type.Predicate.Param*.
13+
* Kind-indexed singletons for indices in *Data.Type.Universe*.
1314

1415
Version 0.1.4.0
1516
---------------
@@ -18,7 +19,7 @@ Version 0.1.4.0
1819

1920
<https://github.com/mstksg/decidable/releases/tag/v0.1.4.0>
2021

21-
* Added `tripleNegative` and `negateTwice` to *Data.Type.Predicate.Logic*,
22+
* Added `tripleNegation` and `negateTwice` to *Data.Type.Predicate.Logic*,
2223
for more constructivist principles.
2324
* Renamed `excludedMiddle` to `complementation`.
2425
* Add `TyPP`, `SearchableTC`, `searchTC`, `SelectableTC`, `selectTC` to

‎src/Data/Type/Universe.hs

+18
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,8 @@ type instance Elem [] = Index
296296
-- declaration to allow you to use these at the type level. However, the
297297
-- main interface is still provided through the newtype wrapper 'SIndex'',
298298
-- which has an actual proper 'Sing' instance.
299+
--
300+
-- @since 0.1.5.0
299301
data SIndex as a :: Index as a -> Type where
300302
SIZ :: SIndex (a ': as) a 'IZ
301303
SIS :: SIndex bs a i -> SIndex (b ': bs) a ('IS i)
@@ -400,6 +402,8 @@ instance (SingI (as :: Maybe k), SDecide k) => Decidable (TyPred (IJust as)) whe
400402
-- declaration to allow you to use these at the type level. However, the
401403
-- main interface is still provided through the newtype wrapper 'SIJust'',
402404
-- which has an actual proper 'Sing' instance.
405+
--
406+
-- @since 0.1.5.0
403407
data SIJust as a :: IJust as a -> Type where
404408
SIJust :: SIJust ('Just a) a 'IJust
405409

@@ -462,6 +466,8 @@ instance (SingI (as :: Either j k), SDecide k) => Decidable (TyPred (IRight as))
462466
-- declaration to allow you to use these at the type level. However, the
463467
-- main interface is still provided through the newtype wrapper 'SIRight'',
464468
-- which has an actual proper 'Sing' instance.
469+
--
470+
-- @since 0.1.5.0
465471
data SIRight as a :: IRight as a -> Type where
466472
SIRight :: SIRight ('Right a) a 'IRight
467473

@@ -521,6 +527,12 @@ deriving instance Show (NEIndex as a)
521527
instance (SingI (as :: NonEmpty k), SDecide k) => Decidable (TyPred (NEIndex as)) where
522528
decide x = withSingI x $ pickElem
523529

530+
-- | Kind-indexed singleton for 'NEIndex'. Provided as a separate data
531+
-- declaration to allow you to use these at the type level. However, the
532+
-- main interface is still provided through the newtype wrapper
533+
-- 'SNEIndex'', which has an actual proper 'Sing' instance.
534+
--
535+
-- @since 0.1.5.0
524536
data SNEIndex as a :: NEIndex as a -> Type where
525537
SNEHead :: SNEIndex (a ':| as) a 'NEHead
526538
SNETail :: SIndex as a i -> SNEIndex (b ':| as) a ('NETail i)
@@ -613,6 +625,8 @@ instance (SingI (as :: (j, k)), SDecide k) => Decidable (TyPred (ISnd as)) where
613625
-- declaration to allow you to use these at the type level. However, the
614626
-- main interface is still provided through the newtype wrapper 'SISnd'',
615627
-- which has an actual proper 'Sing' instance.
628+
--
629+
-- @since 0.1.5.0
616630
data SISnd as a :: ISnd as a -> Type where
617631
SISnd :: SISnd '(a, b) b 'ISnd
618632

@@ -659,6 +673,8 @@ instance Provable (Not (TyPred (IProxy 'Proxy))) where
659673
-- declaration to allow you to use these at the type level. However, the
660674
-- main interface is still provided through the newtype wrapper 'SIProxy'',
661675
-- which has an actual proper 'Sing' instance.
676+
--
677+
-- @since 0.1.5.0
662678
data SIProxy as a :: IProxy as a -> Type
663679

664680
deriving instance Show (SIProxy as a i)
@@ -698,6 +714,8 @@ instance (SingI (as :: Identity k), SDecide k) => Decidable (TyPred (IIdentity a
698714
-- declaration to allow you to use these at the type level. However, the
699715
-- main interface is still provided through the newtype wrapper 'SIIdentity'',
700716
-- which has an actual proper 'Sing' instance.
717+
--
718+
-- @since 0.1.5.0
701719
data SIIdentity as a :: IIdentity as a -> Type where
702720
SIId :: SIIdentity ('Identity a) a 'IId
703721

0 commit comments

Comments
 (0)
Please sign in to comment.