Hoogle Search
Within Stackage Nightly 2025-10-12 (ghc-9.12.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
categoryCharSet :: Category -> CharSetcharset Data.CharSet.Unicode.Category No documentation available.
lookupCategoryCharSet :: String -> Maybe CharSetcharset Data.CharSet.Unicode.Category No documentation available.
offset :: Slice (arr :: Type -> Type) a -> {-# UNPACK #-} !Intcontiguous Data.Primitive.Contiguous.Class No documentation available.
offsetMut :: MutableSlice (arr :: Type -> Type) s a -> {-# UNPACK #-} !Intcontiguous Data.Primitive.Contiguous.Class No documentation available.
insertSet :: Ord a => a -> [a] -> [a]data-ordlist Data.List.Ordered The insertSet function inserts an element into an ordered list. If the element is already there, then the element replaces the existing element.
insertSetBy :: (a -> a -> Ordering) -> a -> [a] -> [a]data-ordlist Data.List.Ordered The insertSetBy function is the non-overloaded version of insertSet.
subset :: Ord a => [a] -> [a] -> Booldata-ordlist Data.List.Ordered The subset function returns true if the first list is a sub-list of the second.
subsetBy :: (a -> a -> Ordering) -> [a] -> [a] -> Booldata-ordlist Data.List.Ordered The subsetBy function is the non-overloaded version of subset.
-
Similar to Data.Edison.Coll.EnumSet but it allows to choose the underlying type for bit storage. This is really a low-level module for type-safe foreign function interfaces. The integer representation of the enumeration type is the bit position of the flag within the bitvector.
subset :: (Enum a, Bits w) => T w a -> T w a -> Boolenumset Data.EnumBitSet subset a b is True if a is a subset of b.