Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
basicSet :: MVector v a => v s a -> a -> ST s ()rebase Rebase.Data.Vector.Generic.Mutable No documentation available.
peekSet :: (IsSet t, Store (Element t)) => Peek tstore Data.Store.Internal Implement peek for an IsSequence of Store instances.
pokeSet :: (IsSet t, Store (Element t)) => t -> Poke ()store Data.Store.Internal Implement poke for an IsSequence of Store instances.
sizeSet :: (IsSet t, Store (Element t)) => Size tstore Data.Store.Internal parseTimeRFC2822 :: TextualMonoid t => t -> Maybe ZonedTimetimerep Data.Time.RFC2822 No documentation available.
parseTimeRFC3339 :: TextualMonoid t => t -> Maybe ZonedTimetimerep Data.Time.RFC3339 No documentation available.
parseTimeRFC822 :: TextualMonoid t => t -> Maybe ZonedTimetimerep Data.Time.RFC822 No documentation available.
defaultSettings :: Text -> Settingsbugsnag Data.Bugsnag.Settings No documentation available.
-
A CharSet is an efficient representation of a set of Char values designed for fast membership tests. As an example build isAlpha will create a set of alphabetic characters. We can then use member on the generated set to efficiently test if a given Char represents an alphabetic character. Designed to be imported qualified:
import Data.CharSet (CharSet) import qualified Data.CharSet as CharSet
-
charset Data.CharSet Stored as a (possibly negated) IntSet and a fast set used for the head byte. The set of valid (possibly negated) head bytes is stored unboxed as a 32-byte bytestring-based lookup table.