Hoogle Search
Within Stackage Nightly 2025-10-05 (ghc-9.12.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
No documentation available.
-
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