Hoogle Search
Within LTS Haskell 24.42 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
No documentation available.
-
type-set Data.Type.SetApp No documentation available.
data
SetSingletonConstructors (a :: k)dhall Dhall.Deriving SetSingletonConstructors t replaces the singletonConstructors from options with the value-level version of t.
-
gi-gdk3 GI.Gdk.Enums Specifies the kind of modification applied to a setting in a EventSetting.
SettingActionChanged :: SettingActiongi-gdk3 GI.Gdk.Enums a setting was changed.
SettingActionDeleted :: SettingActiongi-gdk3 GI.Gdk.Enums a setting was deleted.
SettingActionNew :: SettingActiongi-gdk3 GI.Gdk.Enums a setting was added.
data
SetDim (a :: Nat) (b :: Nat) (c :: [Nat]) (d :: [Nat])harpie Harpie.Shape replace an index at a specific dimension.
>>> :k! Eval (SetDim 0 1 [2,3,4]) ... = [1, 3, 4]
data
SetDims (a :: [Nat]) (b :: [Nat]) (c :: [Nat]) (d :: [Nat])harpie Harpie.Shape Set dimensions of a shape.
>>> :k! Eval (SetDims [0,1] [1,5] [2,3,4]) ... = [1, 5, 4]
>>> :k! Eval (SetDims '[0] '[3] '[]) ... = '[3]
data
SetIndex (b :: Nat) (c :: a) (d :: [a]) (e :: [a])harpie Harpie.Shape Modify an element at a given index. The list is unchanged if the index is out of bounds.
Example
>>> :kind! Eval (SetIndex 2 7 [1,2,3]) Eval (SetIndex 2 7 [1,2,3]) :: [Natural] = [1, 2, 7]