Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
relational-schemas Database.Custom.PostgreSQL Type tag for normal aggregatings set
-
relational-schemas Database.Custom.SQLServer Type tag for normal aggregatings set
-
relational-schemas Database.Custom.SQLite3 Type tag for normal aggregatings set
-
verset Verset A set of values a.
set :: ASetter s t a b -> b -> s -> tlens Control.Lens.Combinators Replace the target of a Lens or all of the targets of a Setter or Traversal with a constant value.
(<$) ≡ set mapped
>>> set _2 "hello" (1,()) (1,"hello")
>>> set mapped () [1,2,3,4] [(),(),(),()]
Note: Attempting to set a Fold or Getter will fail at compile time with an relatively nice error message.set :: Setter s t a b -> b -> s -> t set :: Iso s t a b -> b -> s -> t set :: Lens s t a b -> b -> s -> t set :: Traversal s t a b -> b -> s -> t
set :: ASetter s t a b -> b -> s -> tlens Control.Lens.Setter Replace the target of a Lens or all of the targets of a Setter or Traversal with a constant value.
(<$) ≡ set mapped
>>> set _2 "hello" (1,()) (1,"hello")
>>> set mapped () [1,2,3,4] [(),(),(),()]
Note: Attempting to set a Fold or Getter will fail at compile time with an relatively nice error message.set :: Setter s t a b -> b -> s -> t set :: Iso s t a b -> b -> s -> t set :: Lens s t a b -> b -> s -> t set :: Traversal s t a b -> b -> s -> t
set :: (MonadGen m, Ord a) => Range Int -> m a -> m (Set a)hedgehog Hedgehog.Gen Generates a set using a Range to determine the length. This may fail to generate anything if the element generator cannot produce a large enough number of unique items to satify the required set size.
set :: (MonadGen m, Ord a) => Range Int -> m a -> m (Set a)hedgehog Hedgehog.Internal.Gen Generates a set using a Range to determine the length. This may fail to generate anything if the element generator cannot produce a large enough number of unique items to satify the required set size.
set :: ASetter s t a b -> b -> s -> tmicrolens Lens.Micro set is a synonym for (.~). Setting the 1st component of a pair:
set _1 :: x -> (a, b) -> (x, b) set _1 = \x t -> (x, snd t)
Using it to rewrite (<$):set mapped :: Functor f => a -> f b -> f a set mapped = (<$)
set :: forall o m . MonadIO m => o -> [AttrOp o 'AttrSet] -> m ()haskell-gi-base Data.GI.Base Set a number of properties for some object.