Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
geqdefault :: (Generic a, GEq' (Rep a)) => a -> a -> Boolgeneric-deriving Generics.Deriving.Eq No documentation available.
gsequence :: (GTraversable t, Monad m) => t (m a) -> m (t a)generic-deriving Generics.Deriving.Traversable No documentation available.
gsequenceA :: (GTraversable t, Applicative f) => t (f a) -> f (t a)generic-deriving Generics.Deriving.Traversable No documentation available.
seqOf :: forall k (is :: IxList) s a . Is k A_Fold => Optic' k is s a -> s -> Seq aoptics-core Data.Sequence.Optics Construct a Seq from a fold.
>>> seqOf folded ["hello","world"] fromList ["hello","world"]
>>> seqOf (folded % _2) [("hello",1),("world",2),("!!!",3)] fromList [1,2,3]-
optics-core Optics.Fold Evaluate each action in a structure observed by a Fold from left to right, ignoring the results.
sequenceA_ ≡ sequenceOf_ folded
>>> sequenceOf_ each (putStrLn "hello",putStrLn "world") hello world
data
IxEq (i :: k) (is :: k1) (js :: k1)optics-core Optics.Internal.Optic.TypeLevel Tagged version of 'Data.Type.Equality.(:~:)' for carrying evidence that two index lists in a curried form are equal.
-
optics-core Optics.Traversal Evaluate each action in the structure from left to right, and collect the results.
>>> sequenceOf each ([1,2],[3,4]) [(1,3),(1,4),(2,3),(2,4)]
sequence ≡ sequenceOf traversed ≡ traverse id sequenceOf o ≡ traverseOf o id
NotEqual :: [String] -> Resultdoctest-lib Test.DocTest.Base No documentation available.
bigNatEq :: BigNat# -> BigNat# -> Boolghc-bignum GHC.Num.BigNat Equality test for BigNat
bigNatEq# :: BigNat# -> BigNat# -> Bool#ghc-bignum GHC.Num.BigNat Equality test for BigNat