@@ -296,6 +296,8 @@ type instance Elem [] = Index
296
296
-- declaration to allow you to use these at the type level. However, the
297
297
-- main interface is still provided through the newtype wrapper 'SIndex'',
298
298
-- which has an actual proper 'Sing' instance.
299
+ --
300
+ -- @since 0.1.5.0
299
301
data SIndex as a :: Index as a -> Type where
300
302
SIZ :: SIndex (a ': as ) a 'IZ
301
303
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
400
402
-- declaration to allow you to use these at the type level. However, the
401
403
-- main interface is still provided through the newtype wrapper 'SIJust'',
402
404
-- which has an actual proper 'Sing' instance.
405
+ --
406
+ -- @since 0.1.5.0
403
407
data SIJust as a :: IJust as a -> Type where
404
408
SIJust :: SIJust ('Just a ) a 'IJust
405
409
@@ -462,6 +466,8 @@ instance (SingI (as :: Either j k), SDecide k) => Decidable (TyPred (IRight as))
462
466
-- declaration to allow you to use these at the type level. However, the
463
467
-- main interface is still provided through the newtype wrapper 'SIRight'',
464
468
-- which has an actual proper 'Sing' instance.
469
+ --
470
+ -- @since 0.1.5.0
465
471
data SIRight as a :: IRight as a -> Type where
466
472
SIRight :: SIRight ('Right a ) a 'IRight
467
473
@@ -521,6 +527,12 @@ deriving instance Show (NEIndex as a)
521
527
instance (SingI (as :: NonEmpty k ), SDecide k ) => Decidable (TyPred (NEIndex as )) where
522
528
decide x = withSingI x $ pickElem
523
529
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
524
536
data SNEIndex as a :: NEIndex as a -> Type where
525
537
SNEHead :: SNEIndex (a ':| as ) a 'NEHead
526
538
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
613
625
-- declaration to allow you to use these at the type level. However, the
614
626
-- main interface is still provided through the newtype wrapper 'SISnd'',
615
627
-- which has an actual proper 'Sing' instance.
628
+ --
629
+ -- @since 0.1.5.0
616
630
data SISnd as a :: ISnd as a -> Type where
617
631
SISnd :: SISnd '(a , b ) b 'ISnd
618
632
@@ -659,6 +673,8 @@ instance Provable (Not (TyPred (IProxy 'Proxy))) where
659
673
-- declaration to allow you to use these at the type level. However, the
660
674
-- main interface is still provided through the newtype wrapper 'SIProxy'',
661
675
-- which has an actual proper 'Sing' instance.
676
+ --
677
+ -- @since 0.1.5.0
662
678
data SIProxy as a :: IProxy as a -> Type
663
679
664
680
deriving instance Show (SIProxy as a i )
@@ -698,6 +714,8 @@ instance (SingI (as :: Identity k), SDecide k) => Decidable (TyPred (IIdentity a
698
714
-- declaration to allow you to use these at the type level. However, the
699
715
-- main interface is still provided through the newtype wrapper 'SIIdentity'',
700
716
-- which has an actual proper 'Sing' instance.
717
+ --
718
+ -- @since 0.1.5.0
701
719
data SIIdentity as a :: IIdentity as a -> Type where
702
720
SIId :: SIIdentity ('Identity a ) a 'IId
703
721
0 commit comments