Hoogle Search
Within Stackage Nightly 2025-10-08 (ghc-9.12.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
unifiedOffset :: (Indexed sh, Checking check) => sh -> Index sh -> Result check Intcomfort-array Data.Array.Comfort.Shape No documentation available.
unifiedSizeOffset :: (Indexed sh, Checking check) => sh -> (Int, Index sh -> Result check Int)comfort-array Data.Array.Comfort.Shape No documentation available.
takeIntSet :: (Indexed sh, Index sh ~ Int, Storable a) => IntSet -> Array sh a -> Array IntSet acomfort-array Data.Array.Comfort.Storable >>> Array.takeIntSet (IntSet.fromList [0,2,4,7,13]) (Array.vectorFromList [3,1,4,1,5,9,2,6,5,3,5,8,9,7,9,3::Word8]) StorableArray... (... [0,2,4,7,13]) [3,4,5,6,7]
-
comfort-array Data.Array.Comfort.Storable >>> Array.takeSet (Set.fromList [0,2,4,7,13]) (Array.vectorFromList [3,1,4,1,5,9,2,6,5,3,5,8,9,7,9,3::Word8]) StorableArray... (... [0,2,4,7,13]) [3,4,5,6,7]
class SetContainer set =>
HasKeysSet setmono-traversable Data.Containers Type class for maps whose keys can be converted into sets.
class (SetContainer set, Element set ~ ContainerKey set) =>
IsSet setmono-traversable Data.Containers Polymorphic typeclass for interacting with different set types
deleteSet :: IsSet set => Element set -> set -> setmono-traversable Data.Containers Delete a value from a set.
filterSet :: IsSet set => (Element set -> Bool) -> set -> setmono-traversable Data.Containers Filter values in a set.
insertSet :: IsSet set => Element set -> set -> setmono-traversable Data.Containers Insert a value into a set.
keysSet :: HasKeysSet set => set -> KeySet setmono-traversable Data.Containers Convert a map into a set of its keys.