Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
adjustRWithKey :: (Build -> a -> a) -> Openness -> Feed -> RadixTree a -> RadixTree aradix-tree Data.RadixTree.Word8.Strict Apply a function to every value for which the key is greater than (or equal to) the given one.
adjustRWithKey' :: (Build -> a -> a) -> Openness -> Feed -> RadixTree a -> RadixTree aradix-tree Data.RadixTree.Word8.Strict Apply a function to every value for which the key is greater than (or equal to) the given one. New value is evaluated to WHNF.
adjust :: Int -> (a -> a) -> RAList a -> RAList aral Data.RAList Adjust a value in the list.
>>> adjust 3 toUpper $ fromList "bcdef" fromList "bcdEf"
If index is out of bounds, the list is returned unmodified.>>> adjust 10 toUpper $ fromList "bcdef" fromList "bcdef"
>>> adjust (-1) toUpper $ fromList "bcdef" fromList "bcdef"
adjust :: Int -> (a -> a) -> NERAList a -> NERAList aral Data.RAList.NonEmpty Adjust a value in the list.
>>> adjust 3 toUpper $ fromNonEmpty $ 'a' :| "bcdef" fromNonEmpty ('a' :| "bcDef")If index is out of bounds, the list is returned unmodified.>>> adjust 10 toUpper $ fromNonEmpty $ 'a' :| "bcdef" fromNonEmpty ('a' :| "bcdef")>>> adjust (-1) toUpper $ fromNonEmpty $ 'a' :| "bcdef" fromNonEmpty ('a' :| "bcdef")adjust :: Ord a => (b -> b) -> a -> RMap a b -> RMap a brec-def Data.Recursive.Map RM.get (RM.adjust (applyFun f) k m) === M.adjust (applyFun f) k (RM.get m)
adjustWithKey :: Ord a => (a -> b -> b) -> a -> RMap a b -> RMap a brec-def Data.Recursive.Map RM.get (RM.adjustWithKey (applyFun2 f) k m) === M.adjustWithKey (applyFun2 f) k (RM.get m)
adjust :: Int -> (a -> a) -> Vector a -> Vector arrb-vector Data.RRBVector Adjust the element at the index by applying the function to it. If the index is out of range, the original vector is returned.
adjust' :: Int -> (a -> a) -> Vector a -> Vector arrb-vector Data.RRBVector Like adjust, but the result of the function is forced.
-
srtree Algorithm.EqSat No documentation available.
whenJust :: Monad m => Maybe a -> (a -> m ()) -> m ()status-notifier-item StatusNotifier.Util No documentation available.