Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
lookup :: MonadUnion l m => Node -> m (Node, l)union-find-array Control.Monad.Union Find the node representing a given node, and its label.
lookup :: MonadUnion l m => Node -> m (Node, l)union-find-array Control.Monad.Union.Class Find the node representing a given node, and its label.
lookup :: Union l -> Node -> (Node, l)union-find-array Data.Union Look up the representative of a node, and its label.
lookup :: UnionST s l -> Int -> ST s (Int, l)union-find-array Data.Union.ST Look up the representative of a given node and its label.
lookup :: Eq a => a -> [(a, b)] -> Maybe bverset Verset lookup key assocs looks up a key in an association list. For the result to be Nothing, the list must be finite.
Examples
>>> lookup 2 [] Nothing
>>> lookup 2 [(1, "first")] Nothing
>>> lookup 2 [(1, "first"), (2, "second"), (3, "third")] Just "second"
lookup :: Eq a => a -> [(a, b)] -> Maybe bxmonad-contrib XMonad.Config.Prime lookup key assocs looks up a key in an association list. For the result to be Nothing, the list must be finite.
Examples
>>> lookup 2 [] Nothing
>>> lookup 2 [(1, "first")] Nothing
>>> lookup 2 [(1, "first"), (2, "second"), (3, "third")] Just "second"
lookup :: Eq a => a -> [(a, b)] -> Maybe bxmonad-contrib XMonad.Prelude lookup key assocs looks up a key in an association list. For the result to be Nothing, the list must be finite.
Examples
>>> lookup 2 [] Nothing
>>> lookup 2 [(1, "first")] Nothing
>>> lookup 2 [(1, "first"), (2, "second"), (3, "third")] Just "second"
lookup :: forall a (l :: Type -> Type) . Typeable a => XConfig l -> Maybe axmonad-contrib XMonad.Util.ExtensibleConf Config-time: Retrieve a configuration value of the requested type.
data
Lookup (a :: k) (c :: [(k, b)]) (d :: Maybe b)first-class-families Fcf Find an element associated with a key in an association list.
data
Lookup (a :: k) (c :: [(k, b)]) (d :: Maybe b)first-class-families Fcf.Data.List Find an element associated with a key in an association list.